Examples of SubCoolBarManager


Examples of org.eclipse.jface.action.SubCoolBarManager

   * @param parent
   *            the parent coolbar manager
   * @return the cool bar manager
   */
  protected SubCoolBarManager createSubCoolBarManager(ICoolBarManager parent) {
    return new SubCoolBarManager(parent);
  }
View Full Code Here

Examples of org.eclipse.jface.action.SubCoolBarManager

  @Override
  public void contributeToCoolBar(ICoolBarManager coolBarManager) {
    if (coolBarManager instanceof SubCoolBarManager) {
      subManager = (SubCoolBarManager) coolBarManager;
    } else {
      subManager = new SubCoolBarManager(coolBarManager);
    }
      /*
      * Vitalus:
      * For correct toolbar management by Eclipse platform we MUST
      * provide an ID for the toolbar contribution item. It causes saving/restoring
View Full Code Here
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.