Interface MetisViewerEntry
- All Known Implementing Classes:
MetisViewerEntryImpl
public interface MetisViewerEntry
Data Viewer Entry.
-
Method Summary
Modifier and TypeMethodDescriptionGet child iterator.Get display name.Get object.Get parent.Get unique name.booleanIs the entry visible?.voidsetFocus()Set Focus onto this entry.voidSet Focus onto child of this entry.voidSet the object referred to by the entry.voidsetTreeObject(Object pObject) Set the tree object referred to by the entry.voidsetVisible(boolean pVisible) Set entry visibility.
-
Method Details
-
setObject
Set the object referred to by the entry.- Parameters:
pObject- the new object
-
setTreeObject
Set the tree object referred to by the entry.- Parameters:
pObject- the new object
-
setFocus
void setFocus()Set Focus onto this entry. -
setFocus
Set Focus onto child of this entry.- Parameters:
pName- the name of the child
-
isVisible
boolean isVisible()Is the entry visible?.- Returns:
- true/false
-
setVisible
void setVisible(boolean pVisible) Set entry visibility.- Parameters:
pVisible- true/false
-
getObject
Object getObject()Get object.- Returns:
- the object
-
getParent
MetisViewerEntry getParent()Get parent.- Returns:
- the parent
-
getUniqueName
String getUniqueName()Get unique name.- Returns:
- the name
-
getDisplayName
String getDisplayName()Get display name.- Returns:
- the name
-
childIterator
Iterator<MetisViewerEntry> childIterator()Get child iterator.- Returns:
- the iterator
-