Package devplugin

Examples of devplugin.SettingsTab


    return mPlugin.getButtonAction();
  }

  @Override
  protected boolean hasSettingsTab() {
    SettingsTab settingsTab = mPlugin.getSettingsTab();
    return settingsTab != null;
  }
View Full Code Here


   *
   * @return the SettingsTab object or <code>null</code> if the plugin does not
   *         provide this feature.
   */
  protected SettingsTabProxy doGetSettingsTab() {
    SettingsTab tab = mPlugin.getSettingsTab();
    if (tab == null) {
      return null;
    }
    return new SettingsTabProxy(tab);
  }
View Full Code Here

TOP

Related Classes of devplugin.SettingsTab

Copyright © 2018 www.massapicom. 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.