Interface ICustomizationListNode
-
- All Superinterfaces:
com4j.Com4jObject
- All Known Subinterfaces:
ICustomizationListNode2
,ICustomizationListNode3
public interface ICustomizationListNode extends com4j.Com4jObject
Represents a node in a list.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
addChild(java.lang.Object node)
Adds a new sub-node to the current node.boolean
canAddChild()
Checks if sub-nodes can be added to the current node.com4j.Com4jObject
child(java.lang.String nodeName)
Gets the specified sub-node.IList
children()
The list of CustomizationListNode objects that are sub-nodes of the current node.java.lang.Object
children(int index)
int
childrenCount()
The number of sub-nodes under the node.boolean
deleted()
If true, the node is marked for deletion, but the deletion is not yet committed.void
deleted(boolean pVal)
If true, the node is marked for deletion, but the deletion is not yet committed.com4j.Com4jObject
father()
Gets the CustomizationListNode object representing the current node's parent node, or sets a new father, thereby moving the node.void
father(com4j.Com4jObject pVal)
Gets the CustomizationListNode object representing the current node's parent node, or sets a new father, thereby moving the node.int
id()
For HP use.void
id(int pVal)
For HP use.com4j.Com4jObject
list()
The CustomizationList object that contains the current node.java.lang.String
name()
The current node name.void
name(java.lang.String pVal)
The current node name.int
order()
The order number of the node within its siblings.void
order(int pVal)
The order number of the node within its siblings.boolean
readOnly()
Checks if the current node is read-only.void
removeChild(java.lang.Object node)
Removes the specified sub-node from the current node.boolean
updated()
Indicates if the node was modified since it was loaded from the server.void
updated(boolean pVal)
Indicates if the node was modified since it was loaded from the server.
-
-
-
Method Detail
-
addChild
com4j.Com4jObject addChild(java.lang.Object node)
Adds a new sub-node to the current node.
- Parameters:
node
- Mandatory java.lang.Object parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
removeChild
void removeChild(java.lang.Object node)
Removes the specified sub-node from the current node.
- Parameters:
node
- Mandatory java.lang.Object parameter.
-
child
com4j.Com4jObject child(java.lang.String nodeName)
Gets the specified sub-node.
Getter method for the COM property "Child"
- Parameters:
nodeName
- Mandatory java.lang.String parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
children
IList children()
The list of CustomizationListNode objects that are sub-nodes of the current node.
Getter method for the COM property "Children"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
children
java.lang.Object children(int index)
-
name
java.lang.String name()
The current node name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
name
void name(java.lang.String pVal)
The current node name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
id
int id()
For HP use. The current node ID.
Getter method for the COM property "ID"
- Returns:
- Returns a value of type int
-
id
void id(int pVal)
For HP use. The current node ID.
Setter method for the COM property "ID"
- Parameters:
pVal
- Mandatory int parameter.
-
father
com4j.Com4jObject father()
Gets the CustomizationListNode object representing the current node's parent node, or sets a new father, thereby moving the node.
Getter method for the COM property "Father"
- Returns:
- Returns a value of type com4j.Com4jObject
-
father
void father(com4j.Com4jObject pVal)
Gets the CustomizationListNode object representing the current node's parent node, or sets a new father, thereby moving the node.
Setter method for the COM property "Father"
- Parameters:
pVal
- Mandatory com4j.Com4jObject parameter.
-
canAddChild
boolean canAddChild()
Checks if sub-nodes can be added to the current node.
Getter method for the COM property "CanAddChild"
- Returns:
- Returns a value of type boolean
-
readOnly
boolean readOnly()
Checks if the current node is read-only.
Getter method for the COM property "ReadOnly"
- Returns:
- Returns a value of type boolean
-
list
com4j.Com4jObject list()
The CustomizationList object that contains the current node.
Getter method for the COM property "List"
- Returns:
- Returns a value of type com4j.Com4jObject
-
childrenCount
int childrenCount()
The number of sub-nodes under the node.
Getter method for the COM property "ChildrenCount"
- Returns:
- Returns a value of type int
-
updated
boolean updated()
Indicates if the node was modified since it was loaded from the server.
Getter method for the COM property "Updated"
- Returns:
- Returns a value of type boolean
-
updated
void updated(boolean pVal)
Indicates if the node was modified since it was loaded from the server.
Setter method for the COM property "Updated"
- Parameters:
pVal
- Mandatory boolean parameter.
-
deleted
boolean deleted()
If true, the node is marked for deletion, but the deletion is not yet committed.
Getter method for the COM property "Deleted"
- Returns:
- Returns a value of type boolean
-
deleted
void deleted(boolean pVal)
If true, the node is marked for deletion, but the deletion is not yet committed.
Setter method for the COM property "Deleted"
- Parameters:
pVal
- Mandatory boolean parameter.
-
order
int order()
The order number of the node within its siblings.
Getter method for the COM property "Order"
- Returns:
- Returns a value of type int
-
order
void order(int pVal)
The order number of the node within its siblings.
Setter method for the COM property "Order"
- Parameters:
pVal
- Mandatory int parameter.
-
-