Package com.luciad.beans
Class TLcdPropertyChangeEvent
java.lang.Object
java.util.EventObject
java.beans.PropertyChangeEvent
com.luciad.beans.TLcdPropertyChangeEvent
- All Implemented Interfaces:
Serializable
Deprecated.
Use a UI builder (e.g. Swing) or binding framework instead.
This is a
PropertyChangeEvent
with the additional possibility
to ask whether this event will be followed by related events through the
property Adjusting- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionTLcdPropertyChangeEvent
(Object aSource, String aPropertyName, Object aOldValue, Object aNewValue, boolean aAdjusting) Deprecated.Constructs a newTLcdPropertyChangeEvent
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated.Gets whether this event is followed by related events or nottoString()
Deprecated.Methods inherited from class java.beans.PropertyChangeEvent
getNewValue, getOldValue, getPropagationId, getPropertyName, setPropagationId
Methods inherited from class java.util.EventObject
getSource
-
Constructor Details
-
TLcdPropertyChangeEvent
public TLcdPropertyChangeEvent(Object aSource, String aPropertyName, Object aOldValue, Object aNewValue, boolean aAdjusting) Deprecated.Constructs a newTLcdPropertyChangeEvent
.- Parameters:
aSource
- The bean that fired the event.aPropertyName
- The programmatic name of the property that was changed.aOldValue
- The old value of the property.aNewValue
- The new value of the property.aAdjusting
- A boolean to indicate whether this event will be followed by related events.- See Also:
-
-
Method Details
-
isAdjusting
public boolean isAdjusting()Deprecated.Gets whether this event is followed by related events or not- Returns:
- true if related events follow, falseotherwise.
-
toString
Deprecated.- Overrides:
toString
in classPropertyChangeEvent
-