Package com.gentics.api.lib.resolving
Interface PropertyModificationListener
-
public interface PropertyModificationListener
Interface for objects that need to be notified when some of their subproperties are changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
propertyModified(String path, String property, Object value)
This method is called by the com.gentics.api.lib.resolving.PropertySetter when one of the (sub-)properties of this object is modified.
-
-
-
Method Detail
-
propertyModified
void propertyModified(String path, String property, Object value)
This method is called by the com.gentics.api.lib.resolving.PropertySetter when one of the (sub-)properties of this object is modified.- Parameters:
path
- path of the changed property (not containing the actual name of the property)property
- name of the changed propertyvalue
- new value of the property
-
-