Package com.palantir.ptoss.cinch.swing
Annotation Interface OnChange
A component binding that will call a method when an action occurs. This can be applied to
any object that has an "addChangeListener" method that takes an
ChangeListener
.
Normally used for any sort of JButton
or for a JTextField
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Inner utility class that performs the runtime wiring of allOnChange
bindings. -
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
A boolean indicating whether or not we want to call this when the values is adjusting
-
Element Details
-
call
String callThe name of the method to call when the action occurs. Must be accessible in theBindingContext
.
-
-
-
onAdjust
boolean onAdjustA boolean indicating whether or not we want to call this when the values is adjusting- Default:
- false
-