Java javax.swing BoundedRangeModel fields, constructors, methods, implement or subclass

Example usage for Java javax.swing BoundedRangeModel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing BoundedRangeModel.

The text is from its open source code.

Implementation

javax.swing.BoundedRangeModel has the following implementations.
Click this link to see all its implementation.

Method

voidaddChangeListener(ChangeListener x)
Adds a ChangeListener to the model's listener list.
intgetExtent()
Returns the model's extent, the length of the inner range that begins at the model's value.
intgetMaximum()
Returns the model's maximum.
intgetMinimum()
Returns the minimum acceptable value.
intgetValue()
Returns the model's current value.
booleangetValueIsAdjusting()
Returns true if the current changes to the value property are part of a series of changes.
voidremoveChangeListener(ChangeListener x)
Removes a ChangeListener from the model's listener list.
voidsetExtent(int newExtent)
Sets the model's extent.
voidsetMaximum(int newMaximum)
Sets the model's maximum to newMaximum.
voidsetMinimum(int newMinimum)
Sets the model's minimum to newMinimum.
voidsetRangeProperties(int value, int extent, int min, int max, boolean adjusting)
This method sets all of the model's data with a single method call.
voidsetValue(int newValue)
Sets the model's current value to newValue if newValue satisfies the model's constraints.
voidsetValueIsAdjusting(boolean b)
This attribute indicates that any upcoming changes to the value of the model should be considered a single event.
StringtoString()
Returns a string representation of the object.