Uses of Class
tip.node.Start

Packages that use Start
tip.analysis Provides the analysis utility classes for the TIP ASTs. 
tip.display Provides classes for display ASTs and CFGs of TIP programs. 
tip.node Provides node classes for representing the TIP ASTs. 
tip.parser Provides the parser for the TIP grammar. 
 

Uses of Start in tip.analysis
 

Methods in tip.analysis with parameters of type Start
 void ReversedDepthFirstAdapter.caseStart(Start node)
          Calls ReversedDepthFirstAdapter.inStart(Start), traverses the children of Start in the reverse order of the order they are defined in the grammar, and finally calls ReversedDepthFirstAdapter.outStart(Start).
 void DepthFirstAdapter.caseStart(Start node)
          Calls DepthFirstAdapter.inStart(Start), traverses the children of Start in the order they are defined in the grammar, and finally calls DepthFirstAdapter.outStart(Start).
 A AnswerAdapter.caseStart(Start node)
          Returns the default answer for a Start node.
 A Answer.caseStart(Start node)
          Called by Start from apply(Answer).
 void AnalysisAdapter.caseStart(Start node)
          Called by the Start node from Start#apply(Switch).
 void Analysis.caseStart(Start node)
          Called by the Start node from Start#apply(Switch).
 A QuestionAnswerAdapter.caseStart(Start node, Q question)
          Returns the default answer for a Start node.
 A QuestionAnswer.caseStart(Start node, Q question)
          Called by Start from apply(QuestionAnswer,Object).
 void QuestionAdapter.caseStart(Start node, Q question)
          Action for applying a question to a Start node.
 void Question.caseStart(Start node, Q question)
          Called by Start from apply(Question,Object).
 void ReversedDepthFirstAdapter.inStart(Start node)
          Called by ReversedDepthFirstAdapter.caseStart(Start) before traversing the children of Start.
 void DepthFirstAdapter.inStart(Start node)
          Called by DepthFirstAdapter.caseStart(Start) before traversing the children of Start.
 void ReversedDepthFirstAdapter.outStart(Start node)
          Called by ReversedDepthFirstAdapter.caseStart(Start) after traversing the children of Start.
 void DepthFirstAdapter.outStart(Start node)
          Called by DepthFirstAdapter.caseStart(Start) after traversing the children of Start.
 

Uses of Start in tip.display
 

Methods in tip.display with parameters of type Start
 void ASTDisplay.caseStart(Start node)
           
 

Uses of Start in tip.node
 

Methods in tip.node that return Start
 Start Start.clone()
          Returns a deep clone of this Start node.
 Start Start.clone(Map<Node,Node> oldToNewMap)
          Creates a deep clone of this Start node while putting all old node-new node relations in the map oldToNewMap.
 

Uses of Start in tip.parser
 

Methods in tip.parser that return Start
 Start Parser.parse()