Class MarkerNode
java.lang.Object
org.eclipse.ui.views.markers.internal.MarkerNode
- Direct Known Subclasses:
ConcreteMarker
The MarkerNode class is the class that handles category nodes and
concrete markers.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract MarkerNode[]
Get the children of the node.abstract ConcreteMarker
Get a concrete marker from the receiver.abstract String
Return the description of the receiver.abstract MarkerNode
Return the parent node ornull
if this is a top level element.abstract boolean
Return whether or not this is a concrete node
-
Constructor Details
-
MarkerNode
public MarkerNode()
-
-
Method Details
-
getChildren
Get the children of the node.- Returns:
- MarkerNode[]
-
getParent
Return the parent node ornull
if this is a top level element.- Returns:
- MarkerNode
-
isConcrete
public abstract boolean isConcrete()Return whether or not this is a concrete node- Returns:
- boolean
-
getDescription
Return the description of the receiver.- Returns:
- String
-
getConcreteRepresentative
Get a concrete marker from the receiver. If the receiver is concrete return the receiver otherwise return one of the concrete markers it contains.- Returns:
- ConcreteMarker
-