|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ChildNodeEntries
ChildNodeEntries represents a collection of NodeEntrys that
also maintains the index values of same-name siblings on insertion and removal.
| Method Summary | |
|---|---|
void |
add(NodeEntry cne)
Adds a NodeEntry to the end of the list. |
void |
add(NodeEntry cne,
int index)
Adds a NodeEntry.Note the following special cases: If an entry with the given index already exists, the the new sibling is inserted before. If the given index is bigger that the last entry in the siblings list, intermediate entries will be created. |
void |
add(NodeEntry entry,
int index,
NodeEntry beforeEntry)
Adds a the new NodeEntry before beforeEntry. |
java.util.List<NodeEntry> |
get(Name nodeName)
Returns a List of NodeEntrys for the
given nodeName. |
NodeEntry |
get(Name nodeName,
int index)
Returns the NodeEntry with the given
nodeName and index. |
NodeEntry |
get(Name nodeName,
java.lang.String uniqueID)
Return the NodeEntry that matches the given nodeName and
uniqueID or null if no matching entry can be found. |
boolean |
isComplete()
|
java.util.Iterator<NodeEntry> |
iterator()
Returns an unmodifiable iterator over all NodeEntry objects present in this ChildNodeEntries collection irrespective of their status. |
void |
reload()
Reloads this ChildNodeEntries object. |
NodeEntry |
remove(NodeEntry childEntry)
Removes the child node entry refering to the node state. |
NodeEntry |
reorder(NodeEntry insertEntry,
NodeEntry beforeEntry)
Reorders an existing NodeEntry before another
NodeEntry. |
void |
reorderAfter(NodeEntry insertEntry,
NodeEntry afterEntry)
Reorders an existing NodeEntry after another
NodeEntry. |
| Method Detail |
|---|
boolean isComplete()
true if this ChildNodeEntries have
been updated or completely loaded without being invalidated in the
mean time.
void reload()
throws ItemNotFoundException,
RepositoryException
ChildNodeEntries object.
ItemNotFoundException
RepositoryExceptionjava.util.Iterator<NodeEntry> iterator()
java.util.List<NodeEntry> get(Name nodeName)
List of NodeEntrys for the
given nodeName. This method does not filter out
removed NodeEntrys.
nodeName - the child node name.
nodeName.
NodeEntry get(Name nodeName,
int index)
NodeEntry with the given
nodeName and index. Note, that this method
does not filter out removed NodeEntrys.
nodeName - name of the child node entry.index - the index of the child node entry.
NodeEntry or null if there
is no such NodeEntry.
NodeEntry get(Name nodeName,
java.lang.String uniqueID)
NodeEntry that matches the given nodeName and
uniqueID or null if no matching entry can be found.
nodeName - uniqueID -
java.lang.IllegalArgumentException - if the given uniqueID is null.void add(NodeEntry cne)
NodeEntry to the end of the list. Same as
add(NodeEntry, int), where the index is Path.INDEX_UNDEFINED.
cne - the NodeEntry to add.
void add(NodeEntry cne,
int index)
NodeEntry.
cne - the NodeEntry to add.
void add(NodeEntry entry,
int index,
NodeEntry beforeEntry)
NodeEntry before beforeEntry.
entry - index - beforeEntry - NodeEntry remove(NodeEntry childEntry)
childEntry - the entry to be removed.
null if there is no such entry.
NodeEntry reorder(NodeEntry insertEntry,
NodeEntry beforeEntry)
NodeEntry before another
NodeEntry. If beforeEntry is
null insertEntry is moved to the end of the
child node entries.
insertEntry - the NodeEntry to move.beforeEntry - the NodeEntry where insertEntry is
reordered to.
java.util.NoSuchElementException - if insertEntry or
beforeEntry does not have a NodeEntry
in this ChildNodeEntries.
void reorderAfter(NodeEntry insertEntry,
NodeEntry afterEntry)
NodeEntry after another
NodeEntry. If afterEntry is
null insertEntry is moved to the beginning of
the child node entries.
insertEntry - the NodeEntry to move.afterEntry - the NodeEntry where insertEntry is
reordered behind.
java.util.NoSuchElementException - if insertEntry or
afterEntry does not have a NodeEntry
in this ChildNodeEntries.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||