Interface IVisitorSupport


  • public interface IVisitorSupport
    Marks an model object as accepting visitors.
    Author:
    Jan Ortmann
    • Method Detail

      • accept

        boolean accept​(IModelObjectVisitor visitor)
        Accepts the given visitor. This results in a call of the visitor's visit method for this object and all its children.
        Parameters:
        visitor - The visitor to accept.
        Returns:
        The result of the visitor's visit method.
        See Also:
        IModelObjectVisitor.visit(IModelObject)