Package com.inet.report
Class RDC.FieldsRefreshEvent
- java.lang.Object
-
- com.inet.report.RDC.FieldsRefreshEvent
-
- Enclosing class:
- RDC
public static class RDC.FieldsRefreshEvent extends java.lang.Object
FOR INTERNAL USE ONLY
-
-
Field Summary
Fields Modifier and Type Field Description static int
ADD
The field has been added.static int
DELETE
The field has been removed.static int
UPDATE
The field has been changed.static int
UPDATE_ALL
Maybe all fields has been changed.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCause()
Returns whether a field was added, removed or changed.Engine
getEngine()
Returns theEngine
Field
getField()
The added, removed or changed field.java.lang.String
paramString()
Debug information on this FieldsRefreshEvent: [field, value]
-
-
-
Field Detail
-
ADD
public static final int ADD
The field has been added.- See Also:
- Constant Field Values
-
DELETE
public static final int DELETE
The field has been removed.- See Also:
- Constant Field Values
-
UPDATE
public static final int UPDATE
The field has been changed.- See Also:
- Constant Field Values
-
UPDATE_ALL
public static final int UPDATE_ALL
Maybe all fields has been changed.- See Also:
- Constant Field Values
-
-
Method Detail
-
getEngine
public Engine getEngine()
Returns theEngine
- Returns:
- Engine
-
getField
public Field getField()
The added, removed or changed field. If all fields (UPDATE_ALL) has been changed null is returned.- Returns:
- Field
-
getCause
public int getCause()
Returns whether a field was added, removed or changed.- Returns:
- int
- See Also:
ADD
,DELETE
,UPDATE
,UPDATE_ALL
-
paramString
public java.lang.String paramString()
Debug information on this FieldsRefreshEvent: [field, value]- Returns:
- Debug information on this FieldsRefreshEvent
-
-