|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IReferenceVisitor
This interface is implemented by objects that visit navigable trees.
Usage:
class Visitor implements IReferenceVisitor {
public boolean visit(ICARMANavigable nav) {
// your code here
return true;
}
}
ICARMANavigable root = ...;
root.accept(new Visitor());
Clients may implement this interface.
This interface is not finalized and is subject to change.
ICARMANavigable.accept(IReferenceVisitor)| Field Summary | |
|---|---|
static java.lang.String |
COPYRIGHT
|
| Method Summary | |
|---|---|
boolean |
visit(ICARMANavigable reference)
Visits the given reference |
| Field Detail |
|---|
static final java.lang.String COPYRIGHT
| Method Detail |
|---|
boolean visit(ICARMANavigable reference)
reference - the reference to visit
true if the resource's members should
be visited; false if they should be skipped
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||