|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xalan.xpath.xml.NodeVector
**For internal use only** A very simple table that stores a list of Nodes.
Constructor Summary | |
NodeVector()
**For internal use only** Default constructor. |
|
NodeVector(int blocksize)
**For internal use only** Construct a NodeVector, using the given block size. |
Method Summary | |
void |
addElement(org.w3c.dom.Node value)
**For internal use only** Append a Node onto the vector. |
void |
appendNodes(NodeVector nodes)
**For internal use only** Append the nodes to the list. |
boolean |
contains(org.w3c.dom.Node s)
**For internal use only** Tell if the table contains the given node. |
org.w3c.dom.Node |
elementAt(int i)
**For internal use only** Get the nth element. |
int |
indexOf(org.w3c.dom.Node elem)
**For internal use only** Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
int |
indexOf(org.w3c.dom.Node elem,
int index)
**For internal use only** Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
void |
insertElementAt(org.w3c.dom.Node value,
int at)
**For internal use only** Inserts the specified node in this vector at the specified index. |
void |
removeAllElements()
**For internal use only** Inserts the specified node in this vector at the specified index. |
boolean |
removeElement(org.w3c.dom.Node s)
**For internal use only** Removes the first occurrence of the argument from this vector. |
void |
removeElementAt(int i)
**For internal use only** Deletes the component at the specified index. |
void |
setElementAt(org.w3c.dom.Node node,
int index)
**For internal use only** Sets the component at the specified index of this vector to be the specified object. |
int |
size()
**For internal use only** Get the length of the list. |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public NodeVector()
public NodeVector(int blocksize)
Method Detail |
public final int size()
public final void addElement(org.w3c.dom.Node value)
public final void insertElementAt(org.w3c.dom.Node value, int at)
public final void appendNodes(NodeVector nodes)
public final void removeAllElements()
public final boolean removeElement(org.w3c.dom.Node s)
public final void removeElementAt(int i)
public final void setElementAt(org.w3c.dom.Node node, int index)
public final org.w3c.dom.Node elementAt(int i)
public final boolean contains(org.w3c.dom.Node s)
public final int indexOf(org.w3c.dom.Node elem, int index)
public final int indexOf(org.w3c.dom.Node elem)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |