Package wt.visitor

Class VisitorAdapter

java.lang.Object
wt.visitor.VisitorAdapter
All Implemented Interfaces:
Visitor
Direct Known Subclasses:
BaselineVisitor, ConfigurationVisitor, DocumentContentStructureVisitor, DocumentStructureVisitor, EffVisitor, MultilevelWhereUsedVisitor, RemoveConfigurationVisitor, TextOutputVisitor

public class VisitorAdapter extends Object implements Visitor
This class provides a default "no-op" implementation of a Visitor. The intent for this class is to provide a convenience to programmers for implementing a Visitor. If only a single visit method needs to be implemented, a class should extend the VisitorAdapter and only override the single visit method.

Each of the visit methods in this class is implemented and simply returns true.



Supported API: true

Extendable: true