| javax.microedition.lcdui.GaugeLF
All known Subclasses: javax.microedition.lcdui.GaugeLFImpl,
GaugeLF | interface GaugeLF extends ItemLF(Code) | | Look and Feel interface used by Gauge.
See Naming Conventions
for information about method naming conventions.
|
Method Summary | |
int | lGetValue() Returns the current value in the gauge. | void | lSetMaxValue(int oldMaxValue, int maxValue) Notifies L&F of a maximum value change in the corresponding Gauge. | void | lSetValue(int oldValue, int value) Notifies L&F of a value change in the corresponding Gauge. |
lGetValue | int lGetValue()(Code) | | Returns the current value in the gauge.
the current value in the Gauge |
lSetMaxValue | void lSetMaxValue(int oldMaxValue, int maxValue)(Code) | | Notifies L&F of a maximum value change in the corresponding Gauge.
Parameters: oldMaxValue - - the old maximum value set in the Gauge Parameters: maxValue - - the new maximum value set in the Gauge |
lSetValue | void lSetValue(int oldValue, int value)(Code) | | Notifies L&F of a value change in the corresponding Gauge.
Parameters: oldValue - - the old value set in the Gauge Parameters: value - - the new value set in the Gauge |
|
|