Interface FieldListener
-
public interface FieldListener
Listener interface for objects that are notified when a change is made to a Field, or Fields were added or removed from a set of Fields.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dataChanged(int min, int max)
Notifies the listener the data in the models has changed within the given index range.void
indexSetChanged()
Notifies the listener when the set of indexes changes - either the number of indexes or the fundamental data types associated with thos indexes.void
widthChanged(int width)
Notifies the listener that the width of this field has changed.
-
-
-
Method Detail
-
indexSetChanged
void indexSetChanged()
Notifies the listener when the set of indexes changes - either the number of indexes or the fundamental data types associated with thos indexes.
-
dataChanged
void dataChanged(int min, int max)
Notifies the listener the data in the models has changed within the given index range.- Parameters:
min
- the minimum index affected by the data change.max
- the maximum index affected by the data change.
-
widthChanged
void widthChanged(int width)
Notifies the listener that the width of this field has changed.- Parameters:
width
- the new widht of the field.
-
-