public Element copy() { // Bugfix KGU#83 (bug #32) 2015-11-14: Instead of a Forever loop, a For loop had been created! Forever ele = new Forever(new StringList()); ele.setComment(this.getComment().copy()); ele.setColor(this.getColor()); ele.q = (Subqueue) this.q.copy(); ele.q.parent = ele; // START KGU#82 (bug #31) 2015-11-14 ele.breakpoint = this.breakpoint; // END KGU#82 (bug #31) 2015-11-14 return ele; }
public Forever(StringList _strings) { super(_strings); q.parent = this; setText(_strings); }
public Forever() { super(); q.parent = this; }