org.dom4j.tree
public class BackedList extends ArrayList
BackedList
represents a list of content of a {@link
org.dom4j.Branch}. Changes to the list will be reflected in the branch,
though changes to the branch will not be reflected in this list.
Version: $Revision: 1.14 $
Constructor Summary | |
---|---|
BackedList(AbstractBranch branch, List branchContent) | |
BackedList(AbstractBranch branch, List branchContent, int capacity) | |
BackedList(AbstractBranch branch, List branchContent, List initialContent) |
Method Summary | |
---|---|
boolean | add(Object object) |
void | add(int index, Object object) |
boolean | addAll(Collection collection) |
boolean | addAll(int index, Collection collection) |
void | addLocal(Object object)
Performs a local addition which is not forward through to the Branch or
backing list
|
protected Node | asNode(Object object) |
void | clear() |
boolean | remove(Object object) |
Object | remove(int index) |
Object | set(int index, Object object) |
Parameters: object DOCUMENT ME!