Containerpublic interface Container implements HTMLComponentA container holds other nodes. For example, an HTML element is a container
which can hold attributes, comments, processing instructions, text nodes,
and other elements. |
Methods Summary |
---|
public void | add(HTMLComponent node)Add the node to the end of this container.
| public java.util.List | children()Get all children of this element.
| public void | delete(HTMLComponent node)Remove the specified node from this container. If the node is
not present, nothing is done.
| public java.util.List | get(java.lang.Class type)Filter out children of a specific type.
|
|