Package step.repository.alm.otaclient
Interface ITreeManager
-
- All Superinterfaces:
com4j.Com4jObject
public interface ITreeManager extends com4j.Com4jObject
Represents the system tree, containing a subject tree and all hierarchical field trees.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
nodeById(int nodeID)
Gets the object having the specified node Id.com4j.Com4jObject
nodeByPath(java.lang.String path)
Gets the node at the specified tree path.java.lang.String
nodePath(int nodeID)
Gets the node path, slash separated.IList
rootList(short val)
Gets list of available trees in the specified range.com4j.Com4jObject
treeRoot(java.lang.String rootName)
The root node specified by the node name.
-
-
-
Method Detail
-
treeRoot
com4j.Com4jObject treeRoot(java.lang.String rootName)
The root node specified by the node name.
Getter method for the COM property "TreeRoot"
- Parameters:
rootName
- Mandatory java.lang.String parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
nodePath
java.lang.String nodePath(int nodeID)
Gets the node path, slash separated.
Getter method for the COM property "NodePath"
- Parameters:
nodeID
- Mandatory int parameter.- Returns:
- Returns a value of type java.lang.String
-
nodeByPath
com4j.Com4jObject nodeByPath(java.lang.String path)
Gets the node at the specified tree path.
Getter method for the COM property "NodeByPath"
- Parameters:
path
- Mandatory java.lang.String parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
nodeById
com4j.Com4jObject nodeById(int nodeID)
Gets the object having the specified node Id.
Getter method for the COM property "NodeById"
- Parameters:
nodeID
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
rootList
IList rootList(@DefaultValue("0") short val)
Gets list of available trees in the specified range.
Getter method for the COM property "RootList"
- Parameters:
val
- Optional parameter. Default value is 0- Returns:
- Returns a value of type otaclient.IList
-
-