com.ibm.notes.java.ui.events
Class DocumentFieldChangeEvent

java.lang.Object
  extended by com.ibm.notes.java.ui.events.DocumentFieldChangeEvent

public class DocumentFieldChangeEvent
extends Object

Contains data from the field change event.


Constructor Summary
DocumentFieldChangeEvent(NotesUIField oldField, NotesUIField newField)
          Creates a new document field change event
 
Method Summary
 NotesUIField getNewField()
          Returns the currently selected field
 NotesUIField getOldField()
          Returns the previously selected field
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DocumentFieldChangeEvent

public DocumentFieldChangeEvent(NotesUIField oldField,
                                NotesUIField newField)
Creates a new document field change event

Parameters:
oldField - the previously selected field, or null if none
newField - the field that is now selected, or null if none
Since:
8.5.1
Method Detail

getOldField

public NotesUIField getOldField()
Returns the previously selected field

Returns:
the field, or null if none
Since:
8.5.1

getNewField

public NotesUIField getNewField()
Returns the currently selected field

Returns:
the field, or null if none
Since:
8.5.1