javax.swing.event
Class UndoableEditEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--javax.swing.event.UndoableEditEvent
All Implemented Interfaces:
Serializable

public class UndoableEditEvent
extends EventObject

Safe:

See Also:
Serialized Form

Field Summary
private  javax.swing.undo.UndoableEdit myEdit
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
UndoableEditEvent(Object source, javax.swing.undo.UndoableEdit edit)
          Suppressed: Constructs an UndoableEditEvent object.
 
Method Summary
 javax.swing.undo.UndoableEdit getEdit()
          Enabled: Returns the edit value.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

myEdit

private javax.swing.undo.UndoableEdit myEdit
Constructor Detail

UndoableEditEvent

public UndoableEditEvent(Object source,
                         javax.swing.undo.UndoableEdit edit)
Suppressed: Constructs an UndoableEditEvent object.

Parameters:
source - the Object that originated the event (typically this)
edit - an UndoableEdit object
Method Detail

getEdit

public javax.swing.undo.UndoableEdit getEdit()
Enabled: Returns the edit value.

Returns:
the UndoableEdit object encapsulating the edit


comments?