Package org.cyberneko.html
Class HTMLElements.ElementList
- java.lang.Object
-
- org.cyberneko.html.HTMLElements.ElementList
-
- Enclosing class:
- HTMLElements
public static class HTMLElements.ElementList extends java.lang.Object
Unsynchronized list of elements.
-
-
Field Summary
Fields Modifier and Type Field Description HTMLElements.Element[]
data
The data in the list.int
size
The size of the list.
-
Constructor Summary
Constructors Constructor Description ElementList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addElement(HTMLElements.Element element)
Adds an element to list, resizing if necessary.
-
-
-
Field Detail
-
size
public int size
The size of the list.
-
data
public HTMLElements.Element[] data
The data in the list.
-
-
Method Detail
-
addElement
public void addElement(HTMLElements.Element element)
Adds an element to list, resizing if necessary.
-
-