| |
|
| org.eclipse.ui.activities.IWorkbenchActivitySupport
All known Subclasses: org.eclipse.ui.internal.activities.ws.WorkbenchActivitySupport,
IWorkbenchActivitySupport | public interface IWorkbenchActivitySupport (Code) | | An instance of this interface provides support for managing
IWorkbench activities. An instance of this interface may be
obtained via
org.eclipse.ui.IWorkbench.getActivitySupport .
This interface is not intended to be extended or implemented by clients.
since: 3.0 |
createWorkingCopy | IMutableActivityManager createWorkingCopy()(Code) | | Return a copy of the current activity set. This copy will contain all
activity and category definitions that the workbench activity manager
contains, and will have the same enabled state. It will not have the same
listeners. This is useful for user interfaces that wish to modify the
activity enablement state (such as preference pages).
a copy of the current activity set since: 3.1 |
getActivityManager | IActivityManager getActivityManager()(Code) | | Returns the activity manager for the workbench.
the activity manager for the workbench. Guaranteed not to benull . |
getImageDescriptor | ImageDescriptor getImageDescriptor(IActivity activity)(Code) | | Return the image associated with this activity.
Parameters: activity - the activity the image associated with this activity. Never null . since: 3.1 |
getImageDescriptor | ImageDescriptor getImageDescriptor(ICategory category)(Code) | | Return the image associated with this category.
Parameters: category - the category the image associated with this category. Never null . since: 3.1 |
getTriggerPointManager | ITriggerPointManager getTriggerPointManager()(Code) | | Return the trigger point manager for this instance.
the trigger point manager. Never null . since: 3.1 |
setEnabledActivityIds | void setEnabledActivityIds(Set enabledActivityIds)(Code) | | Sets the set of identifiers to enabled activities.
Parameters: enabledActivityIds - the set of identifiers to enabled activities. This set may beempty, but it must not be null . If this setis not empty, it must only contain instances of String . |
|
|
|