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 Link icon

    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
    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 Details Link icon

    • indexSetChanged Link icon

      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 Link icon

      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 Link icon

      void widthChanged(int width)
      Notifies the listener that the width of this field has changed.
      Parameters:
      width - the new widht of the field.