Interface IModelObjectVisitor

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface IModelObjectVisitor
Visitor for hierarchical model object structures.
Author:
Jan Ortmann
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    visit(IModelObject modelObject)
    Visits the given model object.
  • Method Details

    • visit

      boolean visit(IModelObject modelObject)
      Visits the given model object.
      Returns:
      true if the visitor should continue visiting the object's children, otherwise false.