Graph refactoring

This commit is contained in:
Jindra Petk
2013-02-10 14:19:53 +01:00
parent 92b02e3b56
commit c8f8fbc177
11 changed files with 208 additions and 231 deletions

View File

@@ -0,0 +1,16 @@
package com.jpexs.asdec.graph;
/**
*
* @author JPEXS
*/
public class Loop {
public GraphPart loopContinue;
public GraphPart loopBreak;
public Loop(GraphPart loopContinue, GraphPart loopBreak) {
this.loopContinue = loopContinue;
this.loopBreak = loopBreak;
}
}