Interface IfStatementTree

All Superinterfaces:
StatementTree, Tree
All Known Implementing Classes:
IfStatementTreeImpl

public interface IfStatementTree extends StatementTree
Represents if statement and alternative if statement syntax as well.
   if condition() statements()
   if condition() : statements() endif ;    // alternative syntax
   if condition() statements() elseifClauses() elseClause()