All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.xml.parser.TXNodeList
java.lang.Object
|
+----com.ibm.xml.parser.TXNodeList
- public class TXNodeList
- extends Object
- implements EditableNodeList
An implementation of EditableNodeList interface.
- Version:
- 19980204
-
TXNodeList()
-
-
addElement(Child)
-
-
ensureCapacity(int)
-
-
getEnumerator()
-
-
getLength()
-
-
indexOf(Node)
-
-
insert(long, Node)
-
-
insertSilently(int, Child)
-
-
item(long)
-
-
itemSilently(int)
-
-
remove(long)
-
-
removeSilently(int)
-
-
replace(long, Node)
-
-
replaceSilently(int, Child)
-
TXNodeList
public TXNodeList()
getEnumerator
public NodeEnumerator getEnumerator()
item
public Node item(long index) throws NoSuchNodeException
itemSilently
public Child itemSilently(int index)
getLength
public long getLength()
replace
public void replace(long index,
Node replacednode) throws NoSuchNodeException
replaceSilently
public void replaceSilently(int ind,
Child replacednode)
insert
public void insert(long index,
Node newnode) throws NoSuchNodeException
insertSilently
public void insertSilently(int ind,
Child newnode)
remove
public Node remove(long index) throws NoSuchNodeException
removeSilently
public Child removeSilently(int ind)
addElement
public void addElement(Child ch)
indexOf
public int indexOf(Node n)
ensureCapacity
public void ensureCapacity(int c)
All Packages Class Hierarchy This Package Previous Next Index