java.awt
public class ScrollPaneAdjustable extends Object implements Adjustable, Serializable
Since: 1.4
Method Summary | |
---|---|
void | addAdjustmentListener(AdjustmentListener listener) |
AdjustmentListener[] | getAdjustmentListeners() |
int | getBlockIncrement() |
int | getMaximum() |
int | getMinimum() |
int | getOrientation() |
int | getUnitIncrement() |
int | getValue() |
boolean | getValueIsAdjusting()
Returns true if the value is in the process of changing.
|
int | getVisibleAmount() |
String | paramString() |
void | removeAdjustmentListener(AdjustmentListener listener) |
void | setBlockIncrement(int blockIncrement) |
void | setMaximum(int maximum)
This method should never be called.
|
void | setMinimum(int minimum)
This method should never be called.
|
void | setUnitIncrement(int unitIncrement) |
void | setValue(int value) |
void | setValueIsAdjusting(boolean valueIsAdjusting)
Sets the value of valueIsAdjusting.
|
void | setVisibleAmount(int visibleAmount)
This method should never be called.
|
String | toString() |
Since: 1.4
Parameters: maximum The maximum value to be set.
Throws: AWTError Always throws this error when called.
Parameters: minimum The minimum value to be set.
Throws: AWTError Always throws this error when called.
Since: 1.4
Parameters: visibleAmount The visible amount to be set.
Throws: AWTError Always throws this error when called.