Package org.adempiere.webui.event
Class ValueChangeEvent
- java.lang.Object
-
- org.adempiere.webui.event.ValueChangeEvent
-
- Direct Known Subclasses:
TableValueChangeEvent
public class ValueChangeEvent extends Object
- Version:
- $Revision: 0.10 $
- Author:
- Ashley G Ramdass
-
-
Constructor Summary
Constructors Constructor Description ValueChangeEvent(Object source, String propertyName, Object oldValue, Object newValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getNewValue()
Object
getOldValue()
String
getPropertyName()
Object
getSource()
boolean
isInitEdit()
void
setIsInitEdit(boolean isInitEdit)
-
-
-
Field Detail
-
source
protected Object source
The object on which the Event initially occurred.
-
-
Method Detail
-
getNewValue
public Object getNewValue()
-
getOldValue
public Object getOldValue()
-
getPropertyName
public String getPropertyName()
-
getSource
public Object getSource()
-
isInitEdit
public boolean isInitEdit()
- Returns:
- indicate this event is by user start edit this field but not yet complete edit
-
setIsInitEdit
public void setIsInitEdit(boolean isInitEdit)
- Parameters:
isInitEdit
- indicate this event is by user start edit this field but not yet complete edit
-
-