Interface IFactBaseVisitor

All Known Implementing Classes:
FactBaseVisitor, TextDebugDumpVisitor

public interface IFactBaseVisitor
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    visit(IFactBase factbase)
    Should call factbase.traverse(this) if needed in body
    boolean
    visit(IFactElement factElement)
    Should call factElement.traverse(this) if needed in body
    boolean
    visit(IStructureElement structureElement)
    Should call structureElement.traverse(this) if needed in body
  • Method Details

    • visit

      boolean visit(IFactBase factbase)
      Should call factbase.traverse(this) if needed in body
      Parameters:
      factbase -
      Returns:
      if false the stop visiting (used in traversal)
    • visit

      boolean visit(IStructureElement structureElement)
      Should call structureElement.traverse(this) if needed in body
      Parameters:
      structureElement -
      Returns:
      if false the stop visiting (used in traversal)
    • visit

      boolean visit(IFactElement factElement)
      Should call factElement.traverse(this) if needed in body
      Parameters:
      factElement -
      Returns:
      if false the stop visiting (used in traversal)