Interface IEObjectVisitorCallback

All Known Implementing Classes:
AbstractBmReferencesCollectorVisitorCallback, AbstractRefactoringVisitorCallback, BmObjectDeleteVisitorCallback, BmObjectRenameVisitorCallback

public interface IEObjectVisitorCallback
The EObject visitor callback interface.
It is used by EObjectVisitor and allows to perform the custom logic for visiting objects.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    postVisit(org.eclipse.emf.ecore.EObject eObject)
    Post visit is invoked after the visit(EObject) for eObject and its subordinate object is invoked.
    void
    visit(org.eclipse.emf.ecore.EObject eObject)
    Visits the specified eObject.
  • Method Details

    • visit

      void visit(org.eclipse.emf.ecore.EObject eObject)
      Visits the specified eObject.
      Parameters:
      eObject - the EObject instance, cannot be null.
    • postVisit

      void postVisit(org.eclipse.emf.ecore.EObject eObject)
      Post visit is invoked after the visit(EObject) for eObject and its subordinate object is invoked.
      Parameters:
      eObject - the EObject instance, cannot be null.