com.ibm.as400.access
Class SystemValueEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.ibm.as400.access.SystemValueEvent
All Implemented Interfaces:
java.io.Serializable

public class SystemValueEvent
extends java.util.EventObject

The SystemValueEvent class represents a system value event.

See Also:
SystemValueListener, Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
SystemValueEvent(java.lang.Object source, java.lang.Object newValue, java.lang.Object oldValue)
          Constructs a new SystemValueEvent object.
 
Method Summary
 java.lang.Object getNewValue()
          Returns the new value of the system value.
 java.lang.Object getOldValue()
          Returns the old value of the system 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
 

Constructor Detail

SystemValueEvent

public SystemValueEvent(java.lang.Object source,
                        java.lang.Object newValue,
                        java.lang.Object oldValue)
Constructs a new SystemValueEvent object.
Parameters:
source - The source of the event.
newValue - The new value.
oldValue - The old value.
Method Detail

getNewValue

public java.lang.Object getNewValue()
Returns the new value of the system value.
Returns:
The new value of the system value.

getOldValue

public java.lang.Object getOldValue()
Returns the old value of the system value.
Returns:
The old value of the system value.