Package org.codelibs.nekohtml
Class HTMLElements.ElementList
- java.lang.Object
-
- org.codelibs.nekohtml.HTMLElements.ElementList
-
- Enclosing class:
- HTMLElements
public static class HTMLElements.ElementList extends java.lang.ObjectUnsynchronized list of elements.
-
-
Field Summary
Fields Modifier and Type Field Description HTMLElements.Element[]dataThe data in the list.intsizeThe size of the list.
-
Constructor Summary
Constructors Constructor Description ElementList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddElement(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.
-
-