Package com.polarion.qcentre.factbase
Interface IFactBaseVisitor
- All Known Implementing Classes:
FactBaseVisitor
,TextDebugDumpVisitor
public interface IFactBaseVisitor
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Should callfactbase.traverse(this)
if needed in bodyboolean
visit
(IFactElement factElement) Should callfactElement.traverse(this)
if needed in bodyboolean
visit
(IStructureElement structureElement) Should callstructureElement.traverse(this)
if needed in body
-
Method Details
-
visit
Should callfactbase.traverse(this)
if needed in body- Parameters:
factbase
-- Returns:
- if false the stop visiting (used in traversal)
-
visit
Should callstructureElement.traverse(this)
if needed in body- Parameters:
structureElement
-- Returns:
- if false the stop visiting (used in traversal)
-
visit
Should callfactElement.traverse(this)
if needed in body- Parameters:
factElement
-- Returns:
- if false the stop visiting (used in traversal)
-