Changeset 1904 for trunk/autoquest-plugin-jfc/src/main/java
- Timestamp:
- 03/10/15 14:59:28 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/guimodel/JFCGUIElementSpec.java
r1722 r1904 19 19 20 20 import org.apache.commons.collections15.CollectionUtils; 21 import org.apache.commons.lang.mutable.MutableInt; 21 22 22 23 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement; … … 80 81 * counted separately. This index is used for replaying programs such as Jacareto. 81 82 * </p> 82 */ 83 private int altIndex = -1;83 */ 84 private MutableInt altIndex = new MutableInt(-1); 84 85 85 86 /** … … 308 309 */ 309 310 public int getAltIndex() { 310 return altIndex ;311 return altIndex.intValue(); 311 312 } 312 313 … … 331 332 */ 332 333 public void setAltIndex(int newAltIndex) { 333 altIndex = newAltIndex;334 altIndex.setValue(newAltIndex); 334 335 } 335 336 … … 440 441 setName(other.name); 441 442 } 443 other.altIndex = this.altIndex; 442 444 } 443 445 }
Note: See TracChangeset
for help on using the changeset viewer.