/* */ package NET.worlds.scape; /* */ /* */ import java.util.Vector; /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ class UndoablDelete /* */ implements Undoable /* */ { /* */ protected VectorProperty prop; /* */ protected Object obj; /* */ /* */ UndoablDelete(VectorProperty prop, int index) /* */ { /* 20 */ this.prop = prop; /* 21 */ this.obj = ((Vector)prop.get()).elementAt(index); /* 22 */ prop.delete(this.obj); /* */ } /* */ /* */ public void undo() /* */ { /* 27 */ this.prop.add(this.obj); /* */ } /* */ } /* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\UndoablDelete.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */