Java Code Examples for org.eclipse.jface.action.IContributionManager#insertBefore()
The following examples show how to use
org.eclipse.jface.action.IContributionManager#insertBefore() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProfileActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 2
Source File: RecipeActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 3
Source File: GlobalizeActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 4
Source File: SecurityActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 5
Source File: WorldActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 6
Source File: OsgiActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 7
Source File: OsgiActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 8
Source File: ProfileActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 9
Source File: ProtocolActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 10
Source File: SetupActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 11
Source File: SetupActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 12
Source File: DeploymentActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 13
Source File: DetailViewActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 14
Source File: DetailViewActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Collection<? extends IAction> actions, String contributionID ) { if ( actions != null ) { for ( IAction action : actions ) { if ( contributionID != null ) { manager.insertBefore ( contributionID, action ); } else { manager.add ( action ); } } } }
Example 15
Source File: ItemActionBarContributor.java From neoscada with Eclipse Public License 1.0 | 6 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.MenuManager}s containing * {@link org.eclipse.jface.action.ActionContributionItem}s based on the {@link org.eclipse.jface.action.IAction}s * contained in the <code>submenuActions</code> collection, by inserting them before the specified contribution * item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager ( IContributionManager manager, Map<String, Collection<IAction>> submenuActions, String contributionID ) { if ( submenuActions != null ) { for ( Map.Entry<String, Collection<IAction>> entry : submenuActions.entrySet () ) { MenuManager submenuManager = new MenuManager ( entry.getKey () ); if ( contributionID != null ) { manager.insertBefore ( contributionID, submenuManager ); } else { manager.add ( submenuManager ); } populateManager ( submenuManager, entry.getValue (), null ); } } }
Example 16
Source File: CrossflowActionBarContributor.java From scava with Eclipse Public License 2.0 | 5 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager(IContributionManager manager, Collection<? extends IAction> actions, String contributionID) { if (actions != null) { for (IAction action : actions) { if (contributionID != null) { manager.insertBefore(contributionID, action); } else { manager.add(action); } } } }
Example 17
Source File: EipActionBarContributor.java From eip-designer with Apache License 2.0 | 5 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager(IContributionManager manager, Collection<? extends IAction> actions, String contributionID) { if (actions != null) { for (IAction action : actions) { if (contributionID != null) { manager.insertBefore(contributionID, action); } else { manager.add(action); } } } }
Example 18
Source File: GenconfActionBarContributor.java From M2Doc with Eclipse Public License 1.0 | 5 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ protected void populateManager(IContributionManager manager, Collection<? extends IAction> actions, String contributionID) { if (actions != null) { for (IAction action : actions) { if (contributionID != null) { manager.insertBefore(contributionID, action); } else { manager.add(action); } } } }
Example 19
Source File: BeansActionBarContributor.java From hybris-commerce-eclipse-plugin with Apache License 2.0 | 5 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager(IContributionManager manager, Collection<? extends IAction> actions, String contributionID) { if (actions != null) { for (IAction action : actions) { if (contributionID != null) { manager.insertBefore(contributionID, action); } else { manager.add(action); } } } }
Example 20
Source File: CoreActionBarContributor.java From ifml-editor with MIT License | 5 votes |
/** * This populates the specified <code>manager</code> with {@link org.eclipse.jface.action.ActionContributionItem}s * based on the {@link org.eclipse.jface.action.IAction}s contained in the <code>actions</code> collection, * by inserting them before the specified contribution item <code>contributionID</code>. * If <code>contributionID</code> is <code>null</code>, they are simply added. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void populateManager(IContributionManager manager, Collection<? extends IAction> actions, String contributionID) { if (actions != null) { for (IAction action : actions) { if (contributionID != null) { manager.insertBefore(contributionID, action); } else { manager.add(action); } } } }