Class PersistentFieldChangeImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.PersistentFieldChangeImpl
-
- All Implemented Interfaces:
PersistentFieldChange
public class PersistentFieldChangeImpl extends java.lang.Object implements PersistentFieldChange
-
-
Constructor Summary
Constructors Constructor Description PersistentFieldChangeImpl(java.lang.String componentId, java.lang.String fieldName, java.lang.Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getComponentId()
Returns the nested id of the component, or the empty string for the page's root component.java.lang.String
getFieldName()
Returns the name of the field for which a change was recorded.java.lang.Object
getValue()
Returns the new value for the field (which may be null).
-
-
-
Constructor Detail
-
PersistentFieldChangeImpl
public PersistentFieldChangeImpl(java.lang.String componentId, java.lang.String fieldName, java.lang.Object value)
-
-
Method Detail
-
getComponentId
public java.lang.String getComponentId()
Description copied from interface:PersistentFieldChange
Returns the nested id of the component, or the empty string for the page's root component.- Specified by:
getComponentId
in interfacePersistentFieldChange
-
getFieldName
public java.lang.String getFieldName()
Description copied from interface:PersistentFieldChange
Returns the name of the field for which a change was recorded.- Specified by:
getFieldName
in interfacePersistentFieldChange
-
getValue
public java.lang.Object getValue()
Description copied from interface:PersistentFieldChange
Returns the new value for the field (which may be null).- Specified by:
getValue
in interfacePersistentFieldChange
-
-