Uses of Class
de.uni_paderborn.fujaba.sequencer.Seq

Packages that use Seq
de.uni_paderborn.fujaba.sequencer   
 

Uses of Seq in de.uni_paderborn.fujaba.sequencer
 

Fields in de.uni_paderborn.fujaba.sequencer declared as Seq
private  Seq Sel.thenSeq
          No comment provided by developer, please add a comment to improve documentation.
private  Seq Sel.elseSeq
          No comment provided by developer, please add a comment to improve documentation.
private  Seq Rep.bodySeq
          The body of the repetition
private  Seq FlowActivity.forEachSeq
          ForEachSeq
 

Methods in de.uni_paderborn.fujaba.sequencer that return Seq
 Seq Sequencer.exploreCFG(FlowActivity startFlowActivity)
          exploreCFG
 Seq Sel.getThenSeq()
          Get the thenSeq attribute of the Sel object
 Seq Sel.getElseSeq()
          Get the elseSeq attribute of the Sel object
 Seq Rep.getBodySeq()
          Get the bodySeq attribute of the Rep object
 Seq FlowActivity.getForEachSeq()
          Get the forEachSeq attribute of the FlowActivity object
 

Methods in de.uni_paderborn.fujaba.sequencer with parameters of type Seq
private  void Sequencer.explore(Seq seq, FlowActivity startFlowActivity, FlowActivity endFlowActivity)
          Run dfs and checkForEachStructure before in exactly this order!
private  void Sequencer.exploreRepetition(Seq seq, UMLTransition backUMLTransition, FlowActivity start, FlowActivity end)
          No comment provided by developer, please add a comment to improve documentation.
private  void Sequencer.exploreSelection(Seq seq, UMLTransition firstUMLTransition, UMLTransition secondUMLTransition, FlowActivity start, FlowActivity end)
          No comment provided by developer, please add a comment to improve documentation.
 void FlowActivity.setForEachSeq(Seq forEachSeq)
          ForEachSeq
 

Constructors in de.uni_paderborn.fujaba.sequencer with parameters of type Seq
Sel(FlowActivity flowActivity, Seq thenSeq, UMLTransitionGuard thenUMLTransitionGuard, Seq elseSeq, UMLTransitionGuard elseUMLTransitionGuard)
           
Rep(Seq bodySeq, UMLTransition nextUMLTransition, UMLTransition leavingUMLTransition, boolean type)