Java org.eclipse.jface.action IContributionManager fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jface.action IContributionManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jface.action IContributionManager.

The text is from its open source code.

Method

voidadd(IAction action)
Adds an action as a contribution item to this manager.
voidadd(IContributionItem item)
Adds a contribution item to this manager.
voidappendToGroup(String groupName, IAction action)
Adds a contribution item for the given action at the end of the group with the given name.
voidappendToGroup(String groupName, IContributionItem item)
Adds a contribution item to this manager at the end of the group with the given name.
IContributionItemfind(String id)
Finds the contribution item with the given id.
IContributionItem[]getItems()
Returns all contribution items known to this manager.
voidinsertAfter(String id, IAction action)
Inserts a contribution item for the given action after the item with the given id.
voidinsertAfter(String id, IContributionItem item)
Inserts a contribution item after the item with the given id.
voidinsertBefore(String id, IAction action)
Inserts a contribution item for the given action before the item with the given id.
voidinsertBefore(String id, IContributionItem item)
Inserts a contribution item before the item with the given id.
voidmarkDirty()
Marks this contribution manager as dirty.
voidprependToGroup(String groupName, IAction action)
Adds a contribution item for the given action at the beginning of the group with the given name.
voidprependToGroup(String groupName, IContributionItem item)
Adds a contribution item to this manager at the beginning of the group with the given name.
IContributionItemremove(String id)
Removes and returns the contribution item with the given id from this manager.
IContributionItemremove(IContributionItem item)
Removes the given contribution item from the contribution items known to this manager.
voidremoveAll()
Removes all contribution items from this manager.
voidupdate(boolean force)
Updates this manager's underlying widget(s) with any changes which have been made to it or its items.