loop to string

This commit is contained in:
Jindra Petk
2013-04-27 20:50:14 +02:00
parent 65985a237c
commit 9b8d23dc98

View File

@@ -31,4 +31,9 @@ public class Loop {
this.loopBreak = loopBreak;
this.id = id;
}
@Override
public String toString() {
return "loop(id:" + id + ",continue:" + loopContinue + ", break:" + loopBreak + ")";
}
}