org.qedeq.kernel.base.elli
Interface Visitable
- All Known Subinterfaces:
- Atom, Element, ElementList
- All Known Implementing Classes:
- AtomImpl, ElementListImpl
- public interface Visitable
Every element which can be visited by an Visitor must
implement this interface.
- Version:
- $Revision: 1.2 $
- See Also:
Visitor
|
Method Summary |
void |
accept(Visitor visitor)
The accept() method of an element class calls back the visit()
method for its class. |
accept
public void accept(Visitor visitor)
- The
accept() method of an element class calls back the visit()
method for its class.
- Parameters:
visitor - Visitor that wants to visit this element.