Package | Description |
---|---|
edu.ucsd.sccn |
Modifier and Type | Method and Description |
---|---|
LSL.XMLElement |
LSL.XMLElement.append_child_value(java.lang.String name,
java.lang.String value)
Append a child node with a given name, which has a (nameless) plain-text child with the given text value.
|
LSL.XMLElement |
LSL.XMLElement.append_child(java.lang.String name)
Append a child element with the specified name.
|
LSL.XMLElement |
LSL.XMLElement.append_copy(LSL.XMLElement e)
Append a copy of the specified element as a child.
|
LSL.XMLElement |
LSL.XMLElement.child(java.lang.String name)
Get a child with a specified name.
|
LSL.XMLElement |
LSL.StreamInfo.desc()
Extended description of the stream.
|
LSL.XMLElement |
LSL.XMLElement.first_child()
Get the first child of the element.
|
LSL.XMLElement |
LSL.XMLElement.last_child()
Get the last child of the element.
|
LSL.XMLElement |
LSL.XMLElement.next_sibling()
Get the next sibling in the children list of the parent node.
|
LSL.XMLElement |
LSL.XMLElement.next_sibling(java.lang.String name)
Get the next sibling with the specified name.
|
LSL.XMLElement |
LSL.XMLElement.parent()
Get the parent node.
|
LSL.XMLElement |
LSL.XMLElement.prepend_child_value(java.lang.String name,
java.lang.String value)
Prepend a child node with a given name, which has a (nameless) plain-text child with the given text value.
|
LSL.XMLElement |
LSL.XMLElement.prepend_child(java.lang.String name)
Prepend a child element with the specified name.
|
LSL.XMLElement |
LSL.XMLElement.prepend_copy(LSL.XMLElement e)
Prepend a child element with the specified name.
|
LSL.XMLElement |
LSL.XMLElement.previous_sibling()
Get the previous sibling in the children list of the parent node.
|
LSL.XMLElement |
LSL.XMLElement.previous_sibling(java.lang.String name)
Get the previous sibling with the specified name.
|
Modifier and Type | Method and Description |
---|---|
LSL.XMLElement |
LSL.XMLElement.append_copy(LSL.XMLElement e)
Append a copy of the specified element as a child.
|
LSL.XMLElement |
LSL.XMLElement.prepend_copy(LSL.XMLElement e)
Prepend a child element with the specified name.
|
void |
LSL.XMLElement.remove_child(LSL.XMLElement e)
Remove a specified child element.
|