本文整理匯總了Java中org.eclipse.jface.action.IContributionManager.insertBefore方法的典型用法代碼示例。如果您正苦於以下問題:Java IContributionManager.insertBefore方法的具體用法?Java IContributionManager.insertBefore怎麽用?Java IContributionManager.insertBefore使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.jface.action.IContributionManager
的用法示例。
在下文中一共展示了IContributionManager.insertBefore方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: populateManager
import org.eclipse.jface.action.IContributionManager; //導入方法依賴的package包/類
/**
* 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 );
}
}
}
}
示例2: populateManager
import org.eclipse.jface.action.IContributionManager; //導入方法依賴的package包/類
/**
* 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 );
}
}
}
示例3: populateManager
import org.eclipse.jface.action.IContributionManager; //導入方法依賴的package包/類
/**
* 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 ( final IContributionManager manager, final Collection<? extends IAction> actions, final String contributionID )
{
if ( actions != null )
{
for ( final IAction action : actions )
{
if ( contributionID != null )
{
manager.insertBefore ( contributionID, action );
}
else
{
manager.add ( action );
}
}
}
}
示例4: populateManager
import org.eclipse.jface.action.IContributionManager; //導入方法依賴的package包/類
/**
* 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);
}
}
}
}