Interface AbstractProperty.ValueChangeListener<T>
-
- Type Parameters:
T- property type
- All Known Implementing Classes:
AbstractProperty.WeakPreferenceAdapter,CachingProperty,LayerListDialog.ColumnWidthAdaptionListener,PropertiesDialog.HoverPreviewPreferSelectionPropListener,PropertiesDialog.HoverPreviewPropListener
- Enclosing class:
- AbstractProperty<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface AbstractProperty.ValueChangeListener<T>
A listener that listens to changes in the properties value.- Since:
- 10824
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalueChanged(AbstractProperty.ValueChangeEvent<? extends T> e)Method called when a property value has changed.
-
-
-
Method Detail
-
valueChanged
void valueChanged(AbstractProperty.ValueChangeEvent<? extends T> e)
Method called when a property value has changed.- Parameters:
e- property change event
-
-