Package org.seamcat.model.plugin
Interface UIChangeListener<T>
-
- Type Parameters:
T
-
public interface UIChangeListener<T>
A change listener can be added on a plugin input interface. It should be added as a static field. It can be used to update the UI based on entered values or more complex enablement of fields. The UIModel is used to access the UI items, see example below. // If a value larger than 100 is entered in "value" then // disable input "show" UIChangeListener change = new UIChangeListener() {
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
changed(SeamcatPanel<T> panel)
invoked whenever the UI changes
-
-
-
Method Detail
-
changed
void changed(SeamcatPanel<T> panel)
invoked whenever the UI changes
-
-