Package org.eclipse.jface.action

Examples of org.eclipse.jface.action.ICoolBarManager.markDirty()


          // as this object
          if (actionSetItem.getActionSetId().equals(actionSetId)) {
            item.setVisible(set);
            coolItemToolBarMgr.markDirty();
            if (!coolBarManager.isDirty()) {
              coolBarManager.markDirty();
            }
          }
        }
      }
      // Update the manager
View Full Code Here


          IContributionManager manager = ((ContributionItem) item)
              .getParent();
          manager.markDirty();
          manager.update(false);
          if (!coolBarManager.isDirty()) {
            coolBarManager.markDirty();
          }
          item.update(ICoolBarManager.SIZE);
        }

      }
View Full Code Here

      for (int i = 0; i < items.length; i++) {
        IContributionItem item = items[i];
        item.setVisible(visible || !forceVisibility);
        coolItemToolBarMgr.markDirty();
        if (!coolBarManager.isDirty()) {
          coolBarManager.markDirty();
        }
      }
      // Update the manager
      coolItemToolBarMgr.update(false);
      if (toolBarContributionItem != null) {
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.