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

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

Introduction

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

The text is from its open source code.

Method

voidadd(IAction action)
Adds an action as 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.
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.
voidinsertBefore(String id, IAction action)
Inserts a contribution item for the given action before the item with the given id.
booleanisEmpty()
Returns whether this manager has any contribution items.
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.
IContributionItemremove(String id)
Removes and returns the contribution item with the given id from 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.