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.
-
GaugeModelChangeEvent(Object, int, int, int, int, int, int, int, int, boolean, boolean)
- Create a new GaugeModelChangeEvent using the given source and values.
-
copyright()
-
-
extentChanged()
- Return whether or not the extent has changed.
-
getExtent()
- Return the extent at the time the event was fired.
-
getMaximum()
- Return the maximum at the time the event was fired.
-
getMinimum()
- Return the minmum at the time the event was fired.
-
getPreviousExtent()
- Return the previous extent at the time the event was fired.
-
getPreviousMaximum()
- Return the previous maximum at the time the event was fired.
-
getPreviousMinimum()
- Return the previous minimum at the time the event was fired.
-
getPreviousValue()
- Return the previous value at the time the event was fired.
-
getPreviousValueIsAdjusting()
- Return the previous value is adjusting at the time the event was fired.
-
getValue()
- Return the value at the time the event was fired.
-
getValueIsAdjusting()
- Return valueIsAdjusting at the time the event was fired.
-
maximumChanged()
- Return whether or not the maximum has changed.
-
minimumChanged()
- Return whether or not the minimum has changed.
-
valueChanged()
- Return whether or not the value has changed.
-
valueIsAdjustingChanged()
- Return whether or not valueIsAdjusting has changed.
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.
copyright
public static String copyright()
valueChanged
public boolean valueChanged()
- Return whether or not the value has changed.
minimumChanged
public boolean minimumChanged()
- Return whether or not the minimum has changed.
maximumChanged
public boolean maximumChanged()
- Return whether or not the maximum has changed.
extentChanged
public boolean extentChanged()
- Return whether or not the extent has changed.
valueIsAdjustingChanged
public boolean valueIsAdjustingChanged()
- Return whether or not valueIsAdjusting has changed.
getValue
public int getValue()
- Return the value at the time the event was fired.
getPreviousValue
public int getPreviousValue()
- Return the previous value at the time the event was fired.
getMinimum
public int getMinimum()
- Return the minmum at the time the event was fired.
getPreviousMinimum
public int getPreviousMinimum()
- Return the previous minimum at the time the event was fired.
getMaximum
public int getMaximum()
- Return the maximum at the time the event was fired.
getPreviousMaximum
public int getPreviousMaximum()
- Return the previous maximum at the time the event was fired.
getExtent
public int getExtent()
- Return the extent at the time the event was fired.
getPreviousExtent
public int getPreviousExtent()
- Return the previous extent at the time the event was fired.
getValueIsAdjusting
public boolean getValueIsAdjusting()
- Return valueIsAdjusting at the time the event was fired.
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