Package honeycrm.client.misc

Source Code of honeycrm.client.misc.PlatformProvider

package honeycrm.client.misc;

import honeycrm.client.mvp.presenters.HeaderPresenter.Display;
import honeycrm.client.mvp.views.Platform;
import honeycrm.client.plugin.IPlatform;

public class PlatformProvider {
  private static IPlatform p;

  private PlatformProvider() {
  }

  public static void registerHeader(final Display headerView) {
    p = new Platform(headerView, null);
  }

  public static IPlatform platform() {
    return p;
  }
}
TOP

Related Classes of honeycrm.client.misc.PlatformProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.