1 19 20 package swingwtx.swing.event; 21 22 import swingwtx.swing.undo.UndoableEdit; 23 24 public class UndoableEditEvent extends java.util.EventObject { 25 private UndoableEdit myEdit; 26 27 public UndoableEditEvent(Object source, UndoableEdit edit) { 28 super(source); 29 myEdit = edit; 30 } 31 32 public UndoableEdit getEdit() { 33 return myEdit; 34 } 35 } 36 | Popular Tags |