Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle ADF Mobile
11g Release 2 (11.1.2.4.0)

E27204-03


oracle.adfmf.java.beans
Class PropertyChangeEvent

java.lang.Object
  extended by java.util.EventObject
      extended by oracle.adfmf.java.beans.PropertyChangeEvent

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public class PropertyChangeEvent
extends java.util.EventObject
implements java.lang.Comparable

A "PropertyChange" event gets delivered whenever a bean changes a "bound" or "constrained" property. A PropertyChangeEvent object is sent as an argument to the PropertyChangeListener and VetoableChangeListener methods.

Normally PropertyChangeEvents are accompanied by the name and the old and new value of the changed property. If the new value is a primitive type (such as int or boolean) it must be wrapped as the corresponding java.lang.* Object type (such as Integer or Boolean).

Null values may be provided for the old and the new values if their true values are not known.

An event source may send a null object as the name to indicate that an arbitrary set of if its properties have changed. In this case the old and new values should also be null.

See Also:
Serialized Form

Constructor Summary
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, boolean oldValue, boolean newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, byte oldValue, byte newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, char oldValue, char newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, double oldValue, double newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, float oldValue, float newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, int oldValue, int newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, long oldValue, long newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue, long timestamp)
          Constructs a new PropertyChangeEvent.
PropertyChangeEvent(java.lang.Object source, java.lang.String propertyName, short oldValue, short newValue)
          Constructs a new PropertyChangeEvent.

 

Method Summary
 int compareTo(java.lang.Object o)
          Used to compare the two property change events for the purpose of generation time.
 java.lang.Object getNewValue()
          Sets the new value for the property, expressed as an Object.
 java.lang.Object getOldValue()
          Gets the old value for the property, expressed as an Object.
 java.lang.String getPropertyName()
          Gets the programmatic name of the property that was changed.
 long getTimestamp()
          Gets the create timestamp.
 java.lang.String toString()
          Generate a simple string representation of the event.

 

Methods inherited from class java.util.EventObject
getSource

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Constructor Detail

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           boolean oldValue,
                           boolean newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           int oldValue,
                           int newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           long oldValue,
                           long newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           short oldValue,
                           short newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           float oldValue,
                           float newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           double oldValue,
                           double newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           char oldValue,
                           char newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           byte oldValue,
                           byte newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           java.lang.Object oldValue,
                           java.lang.Object newValue)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.

PropertyChangeEvent

public PropertyChangeEvent(java.lang.Object source,
                           java.lang.String propertyName,
                           java.lang.Object oldValue,
                           java.lang.Object newValue,
                           long timestamp)
Constructs a new PropertyChangeEvent.
Parameters:
source - The bean that fired the event.
propertyName - The programmatic name of the property that was changed.
oldValue - The old value of the property.
newValue - The new value of the property.
timestamp - The timestamp associated with the creations

Method Detail

getPropertyName

public java.lang.String getPropertyName()
Gets the programmatic name of the property that was changed.
Returns:
The programmatic name of the property that was changed. May be null if multiple properties have changed.

getNewValue

public java.lang.Object getNewValue()
Sets the new value for the property, expressed as an Object.
Returns:
The new value for the property, expressed as an Object. May be null if multiple properties have changed.

getOldValue

public java.lang.Object getOldValue()
Gets the old value for the property, expressed as an Object.
Returns:
The old value for the property, expressed as an Object. May be null if multiple properties have changed.

getTimestamp

public long getTimestamp()
Gets the create timestamp.
Returns:
The event timestamp

compareTo

public int compareTo(java.lang.Object o)
Used to compare the two property change events for the purpose of generation time. Internal method.
Specified by:
compareTo in interface java.lang.Comparable

toString

public java.lang.String toString()
Generate a simple string representation of the event.
Overrides:
toString in class java.util.EventObject

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle ADF Mobile
11g Release 2 (11.1.2.4.0)

E27204-03


Copyright © 2012, 2013 Oracle. All Rights Reserved.