All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.eou.toolkit.gauge.GaugeModelChangeEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----com.ibm.eou.toolkit.gauge.GaugeModelChangeEvent

public class GaugeModelChangeEvent
extends EventObject
GaugeModelChangeEvent is used to notify interested parties that the state of a GaugeModel has changed.


Constructor Index

 o GaugeModelChangeEvent(Object, int, int, int, int, int, int, int, int, boolean, boolean)
Create a new GaugeModelChangeEvent using the given source and values.

Method Index

 o copyright()
 o extentChanged()
Return whether or not the extent has changed.
 o getExtent()
Return the extent at the time the event was fired.
 o getMaximum()
Return the maximum at the time the event was fired.
 o getMinimum()
Return the minmum at the time the event was fired.
 o getPreviousExtent()
Return the previous extent at the time the event was fired.
 o getPreviousMaximum()
Return the previous maximum at the time the event was fired.
 o getPreviousMinimum()
Return the previous minimum at the time the event was fired.
 o getPreviousValue()
Return the previous value at the time the event was fired.
 o getPreviousValueIsAdjusting()
Return the previous value is adjusting at the time the event was fired.
 o getValue()
Return the value at the time the event was fired.
 o getValueIsAdjusting()
Return valueIsAdjusting at the time the event was fired.
 o maximumChanged()
Return whether or not the maximum has changed.
 o minimumChanged()
Return whether or not the minimum has changed.
 o valueChanged()
Return whether or not the value has changed.
 o valueIsAdjustingChanged()
Return whether or not valueIsAdjusting has changed.

Constructors

 o GaugeModelChangeEvent
 public GaugeModelChangeEvent(Object source,
                              int value,
                              int previousValue,
                              int minimum,
                              int previousMinimum,
                              int maximum,
                              int previousMaximum,
                              int extent,
                              int previousExtent,
                              boolean valueIsAdjusting,
                              boolean previousValueIsAdjusting)
Create a new GaugeModelChangeEvent using the given source and values. Current and previous values are required to allow the event to determine exactly what has changed on the GaugeModel.

Methods

 o copyright
 public static String copyright()
 o valueChanged
 public boolean valueChanged()
Return whether or not the value has changed.

 o minimumChanged
 public boolean minimumChanged()
Return whether or not the minimum has changed.

 o maximumChanged
 public boolean maximumChanged()
Return whether or not the maximum has changed.

 o extentChanged
 public boolean extentChanged()
Return whether or not the extent has changed.

 o valueIsAdjustingChanged
 public boolean valueIsAdjustingChanged()
Return whether or not valueIsAdjusting has changed.

 o getValue
 public int getValue()
Return the value at the time the event was fired.

 o getPreviousValue
 public int getPreviousValue()
Return the previous value at the time the event was fired.

 o getMinimum
 public int getMinimum()
Return the minmum at the time the event was fired.

 o getPreviousMinimum
 public int getPreviousMinimum()
Return the previous minimum at the time the event was fired.

 o getMaximum
 public int getMaximum()
Return the maximum at the time the event was fired.

 o getPreviousMaximum
 public int getPreviousMaximum()
Return the previous maximum at the time the event was fired.

 o getExtent
 public int getExtent()
Return the extent at the time the event was fired.

 o getPreviousExtent
 public int getPreviousExtent()
Return the previous extent at the time the event was fired.

 o getValueIsAdjusting
 public boolean getValueIsAdjusting()
Return valueIsAdjusting at the time the event was fired.

 o getPreviousValueIsAdjusting
 public boolean getPreviousValueIsAdjusting()
Return the previous value is adjusting at the time the event was fired.


All Packages  Class Hierarchy  This Package  Previous  Next  Index