Class TextTableContentProvider
- All Implemented Interfaces:
EventListener
,IContentProvider
,IStructuredContentProvider
,ITreeContentProvider
- Author:
- Christopher Mindus
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Default type: the text IDs from edited table are the only ones shown.static final int
Intersection of all text types from all tables.static final int
Union of all text types from all tables.Constructor Summary
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Disposes of this content provider.Object[]
getChildren
(Object parentElement) Returns the child elements of the given parent element.Object[]
getElements
(Object inputElement) Returns the parent for the given element, ornull
indicating that the parent can't be computed.boolean
hasChildren
(Object element) Returns whether the given element has children.void
inputChanged
(Viewer viewer, Object oldInput, Object newInput) Notifies this content provider that the given viewer's input has been switched to a different element.void
Called to process an event.void
setType
(int type) Sets the type of content: TYPE_*.
Field Details
TYPE_FROM_ORIGINAL
public static final int TYPE_FROM_ORIGINALDefault type: the text IDs from edited table are the only ones shown.- See Also:
TYPE_UNION
public static final int TYPE_UNIONUnion of all text types from all tables.- See Also:
TYPE_INTERSECTION
public static final int TYPE_INTERSECTIONIntersection of all text types from all tables.- See Also:
Constructor Details
TextTableContentProvider
public TextTableContentProvider()The StringMapProp being used for the table.
Method Details
setType
public void setType(int type) Sets the type of content: TYPE_*.onEvent
Called to process an event.- Specified by:
onEvent
in interfaceEventListener
- Parameters:
event
- The event.
inputChanged
Notifies this content provider that the given viewer's input has been switched to a different element.A typical use for this method is registering the content provider as a listener to changes on the new input (using model-specific means), and deregistering the viewer from the old input. In response to these change notifications, the content provider should update the viewer (see the add, remove, update and refresh methods on the viewers).
The viewer should not be updated during this call, as it might be in the process of being disposed.
- Specified by:
inputChanged
in interfaceIContentProvider
- Parameters:
viewer
- the vieweroldInput
- the old input element, ornull
if the viewer did not previously have an inputnewInput
- the new input element, ornull
if the viewer does not have an input. The new input must be a Object [] of EditorTextTable.
dispose
public void dispose()Disposes of this content provider. This is called by the viewer when it is disposed.The viewer should not be updated during this call, as it is in the process of being disposed.
- Specified by:
dispose
in interfaceIContentProvider
getElements
NOTE: The returned array must not contain the given
inputElement
, since this leads to recursion issues inAbstractTreeViewer
(see bug 9262).- Specified by:
getElements
in interfaceIStructuredContentProvider
- Specified by:
getElements
in interfaceITreeContentProvider
getChildren
Returns the child elements of the given parent element.The difference between this method and
The result is not modified by the viewer.IStructuredContentProvider.getElements
is thatgetElements
is called to obtain the tree viewer's root elements, whereasgetChildren
is used to obtain the children of a given parent element in the tree (including a root).- Specified by:
getChildren
in interfaceITreeContentProvider
- Parameters:
parentElement
- the parent element- Returns:
- an array of child elements
getParent
Returns the parent for the given element, ornull
indicating that the parent can't be computed. In this case the tree-structured viewer can't expand a given node correctly if requested.- Specified by:
getParent
in interfaceITreeContentProvider
- Parameters:
element
- the element- Returns:
- the parent element, or
null
if it has none or if the parent cannot be computed
hasChildren
Returns whether the given element has children.Intended as an optimization for when the viewer does not need the actual children. Clients may be able to implement this more efficiently than
getChildren
.- Specified by:
hasChildren
in interfaceITreeContentProvider
- Parameters:
element
- the element- Returns:
true
if the given element has children, andfalse
if it has no children