Package org.eclipse.jface.viewers
Interface StructuredViewerInternals.AssociateListener
-
- Enclosing class:
- StructuredViewerInternals
protected static interface StructuredViewerInternals.AssociateListener
Nothing to see here.- Since:
- 3.5
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
associate(Object element, Item item)
Call when an element is associated with an Itemvoid
disassociate(Item item)
Called when an Item is no longer associatedvoid
filteredOut(Object element)
Called when an element has been filtered out.
-
-
-
Method Detail
-
associate
void associate(Object element, Item item)
Call when an element is associated with an Item- Parameters:
element
- the elementitem
- the item
-
disassociate
void disassociate(Item item)
Called when an Item is no longer associated- Parameters:
item
- the item
-
filteredOut
void filteredOut(Object element)
Called when an element has been filtered out.- Parameters:
element
- the filtered element- Since:
- 3.6
-
-