Interface IPropertySheetToolbarItemsProvider
- 
 public interface IPropertySheetToolbarItemsProviderService to handle additional md property palette toolbar contribution items provided by plugins.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<org.eclipse.jface.action.IContributionItem>getItems()Returns collection of the palette toolbar contribution items.org.eclipse.jface.preference.IPreferenceStoregetPreferenceStore()Returns preference store used to store toolbar contribution items state of the current items provider.voidpropertyChange(org.eclipse.jface.util.PropertyChangeEvent event, IScene scene)Called by extension point when property related to some contribution item is changed.voidselectionChanged(ISelection selection)Notifies this listener that the selection has changed.
 
- 
- 
- 
Method Detail- 
getItemsCollection<org.eclipse.jface.action.IContributionItem> getItems() Returns collection of the palette toolbar contribution items.- Returns:
- collection of toolbar contribution items, never null
 
 - 
getPreferenceStoreorg.eclipse.jface.preference.IPreferenceStore getPreferenceStore() Returns preference store used to store toolbar contribution items state of the current items provider.- Returns:
- preference store, never null
 
 - 
selectionChangedvoid selectionChanged(ISelection selection) Notifies this listener that the selection has changed.This method is called when the editor selection changes. - Parameters:
- selection- the current selection. This may be- null
 
 - 
propertyChangevoid propertyChange(org.eclipse.jface.util.PropertyChangeEvent event, IScene scene)Called by extension point when property related to some contribution item is changed.- Parameters:
- event- property change event reference, cannot be- null
- scene- scene, cannot be- null
 
 
- 
 
-