Package org.eclipse.jface.action

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


  @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

Related Classes of org.eclipse.jface.action.SubCoolBarManager

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.