Package org.adempiere.webui.event
Class TableValueChangeEvent
- java.lang.Object
-
- org.adempiere.webui.event.ValueChangeEvent
-
- org.adempiere.webui.event.TableValueChangeEvent
-
public class TableValueChangeEvent extends ValueChangeEvent
An event encapsulating a change in a Table. The event details the object that changed, it's position in the table and the changed value.- Author:
- Andrew Kimball
-
-
Field Summary
-
Fields inherited from class org.adempiere.webui.event.ValueChangeEvent
source
-
-
Constructor Summary
Constructors Constructor Description TableValueChangeEvent(Object source, String propertyName, int row, int column, Object oldValue, Object newValue)
Constructor for the event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
Get the column index for the changed valueint
getRow()
Get the row index for the changed value-
Methods inherited from class org.adempiere.webui.event.ValueChangeEvent
getNewValue, getOldValue, getPropertyName, getSource, isInitEdit, setIsInitEdit
-
-
-
-
Constructor Detail
-
TableValueChangeEvent
public TableValueChangeEvent(Object source, String propertyName, int row, int column, Object oldValue, Object newValue)
Constructor for the event.- Parameters:
source
- The object that changedpropertyName
- The column name of the changed objectrow
- The row of the changed objectcolumn
- The column of the changed objectoldValue
- The new value of the objectnewValue
- The old value of the object (often just a copy of the new value)
-
-