Interface IDsNode
-
- All Known Implementing Classes:
DsContainerNode,DsSetNode
@Scriptable public interface IDsNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetClassId()Get the class id of this org-structure node.StringgetGuid()Get the unique identifier of this org-structure node.intgetId()Get the integer identifier of this org-structure node.DsContainerNodegetParent()intgetPriority()Get the priority of this org-structure node.booleanhasParent()booleanisDeleted()
-
-
-
Method Detail
-
getId
int getId()
Get the integer identifier of this org-structure node.- Returns:
- The integer identifier of the org-structure node.
-
getGuid
String getGuid()
Get the unique identifier of this org-structure node.- Returns:
- The unique identifier of the org-structure node.
-
getClassId
int getClassId()
Get the class id of this org-structure node.- Returns:
- The class id.
-
getPriority
int getPriority()
Get the priority of this org-structure node.- Returns:
- The priority.
-
isDeleted
boolean isDeleted()
- Returns:
trueif this org-structure node is deleted, orfalseotherwise.
-
hasParent
boolean hasParent()
- Returns:
trueif this org-structure node has a parent, orfalseotherwise.
-
getParent
DsContainerNode getParent()
- Returns:
- The parent of this org-structure node,
or
nullif this node has no parent.
-
-