Package com.inet.pdfc.config
Interface DefaultProfile.ProfileChangeListener
-
- Enclosing class:
- DefaultProfile
public static interface DefaultProfile.ProfileChangeListenerA listener that can be registered to be notified if a value in the profile changed- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonPropertyUpdate(PDFCProperty<?> property, java.lang.Object value)Called when the given property changedvoidonPropertyUpdate(java.lang.String propertyName, java.lang.Object value)Called when a property with the given name changed
-
-
-
Method Detail
-
onPropertyUpdate
void onPropertyUpdate(PDFCProperty<?> property, java.lang.Object value)
Called when the given property changed- Parameters:
property- the property that changedvalue- the new value
-
onPropertyUpdate
void onPropertyUpdate(java.lang.String propertyName, java.lang.Object value)Called when a property with the given name changed- Parameters:
propertyName- the property that changedvalue- the new value
-
-