com.dat.cx
Class CxExtendsPropertyChangeEvent
java.lang.Object
|
+--java.util.EventObject
|
+--com.dat.cx.CxExtendsPropertyChangeEvent
- All Implemented Interfaces:
- java.io.Serializable
- public class CxExtendsPropertyChangeEvent
- extends java.util.EventObject
CxExtendsPropertyChangeEvents are dispatched to any registered listeners notifying
them that a property of the extends from component or any descendent of the extends from
component has had its value changed.
- See Also:
- Serialized Form
Constructor Summary |
CxExtendsPropertyChangeEvent(java.lang.Object source,
java.lang.String path,
java.lang.String oldValue,
java.lang.String newValue)
Constructor |
Method Summary |
java.lang.String |
getNewValue()
Get the new value of the property |
java.lang.String |
getOldValue()
Get the orignial value of the property |
java.lang.String |
getPath()
Get the path to changed property. |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CxExtendsPropertyChangeEvent
public CxExtendsPropertyChangeEvent(java.lang.Object source,
java.lang.String path,
java.lang.String oldValue,
java.lang.String newValue)
- Constructor
- Parameters:
source
- the extends from componentpath
- the path within the extends from component to the
descendent property.oldValue
- the original property value.newValue
- the new property value.
getPath
public java.lang.String getPath()
- Get the path to changed property.
- Returns:
- path to the changed property.
getOldValue
public java.lang.String getOldValue()
- Get the orignial value of the property
- Returns:
- the original value of the property
getNewValue
public java.lang.String getNewValue()
- Get the new value of the property
- Returns:
- the new value of the property