|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use VisitException | |
| com.tensegrity.generic.attribute | Contains interfaces that define the attribute framework and its associated exceptions. |
| Uses of VisitException in com.tensegrity.generic.attribute |
| Methods in com.tensegrity.generic.attribute that throw VisitException | |
void |
AttributeCollectionVisitor.beginVisit()
This method is invoked before the traversal of an AttributeCollection hierarchy
actually begins. |
void |
AttributeCollectionVisitor.endVisit()
This method is invoked after an AtributeCollection
traversal has ended. |
void |
AttributeCollectionVisitor.enterAttribute(Attribute attribute,
int level,
java.lang.String path)
This method is invoked during traversal of an AtributeCollection
hierarchy each time an attribute is encountered and entered. |
void |
AttributeCollectionVisitor.leaveAttribute(Attribute attribute,
int level,
java.lang.String path)
This method is invoked during traversal of an AtributeCollection
hierarchy each time after an attribute was visited. |
void |
AttributeCollectionVisitor.enterAttributeCollection(AttributeCollection attributeSet,
int level,
java.lang.String path)
This method is invoked during traversal of an AtributeCollection
hierarchy each time a nested AtributeCollection is encountered
and entered. |
void |
AttributeCollectionVisitor.leaveAttributeCollection(AttributeCollection attributeSet,
int level,
java.lang.String path)
This method is invoked during traversal of an AtributeCollection
hierarchy each time after an AtributeCollection was visited.
|
java.util.Iterator |
AttributeCollection.find(java.lang.String path)
This method allows callers to retrieve attributes that are nested in an AttributeCollection to any arbitrary depth. |
java.util.Iterator |
AttributeCollection.findAndRemove(java.lang.String path)
Removes the Attribute with the given path from the
collection. |
void |
AttributeCollection.findAndDelete(java.lang.String path)
Deletes the Attribute at the given location from the
collection. |
java.util.Iterator |
AttributeCollection.findAndFlatten(java.lang.String path)
This method assembles attributes that match the path into a list of flat ones. |
void |
AttributeCollection.visit(AttributeCollectionVisitor visitor)
Visits this collection of Attribute objects and all nested
collections, then invokes visit(Attribute) from the given
AttributeCollectionVisitor on all Attribute
objects. |
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||