java.lang.Objectjavax.swing.DefaultBoundedRangeModel
public class DefaultBoundedRangeModel
A generic implementation of BoundedRangeModel.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeansTM
has been added to the java.beans package.
Please see XMLEncoder.
BoundedRangeModel| Field Summary | |
|---|---|
protected ChangeEvent |
changeEvent
Only one ChangeEvent is needed per model instance since the
event's only (read-only) state is the source property. |
protected EventListenerList |
listenerList
The listeners waiting for model changes. |
| Constructor Summary | |
|---|---|
DefaultBoundedRangeModel()
Initializes all of the properties with default values. |
|
DefaultBoundedRangeModel(int value,
int extent,
int min,
int max)
Initializes value, extent, minimum and maximum. |
|
| Method Summary | ||
|---|---|---|
void |
addChangeListener(ChangeListener l)
Adds a ChangeListener. |
|
protected void |
fireStateChanged()
Runs each ChangeListener's stateChanged method. |
|
ChangeListener[] |
getChangeListeners()
Returns an array of all the change listeners registered on this DefaultBoundedRangeModel. |
|
int |
getExtent()
Returns the model's extent. |
|
|
getListeners(Class<T> listenerType)
Returns an array of all the objects currently registered as FooListeners
upon this model. |
|
int |
getMaximum()
Returns the model's maximum. |
|
int |
getMinimum()
Returns the model's minimum. |
|
int |
getValue()
Returns the model's current value. |
|
boolean |
getValueIsAdjusting()
Returns true if the value is in the process of changing as a result of actions being taken by the user. |
|
void |
removeChangeListener(ChangeListener l)
Removes a ChangeListener. |
|
void |
setExtent(int n)
Sets the extent to n after ensuring that n is greater than or equal to zero and falls within the model's constraints: |
|
void |
setMaximum(int n)
Sets the maximum to n after ensuring that n that the other three properties obey the model's constraints: |
|
void |
setMinimum(int n)
Sets the minimum to n after ensuring that n that the other three properties obey the model's constraints: |
|
void |
setRangeProperties(int newValue,
int newExtent,
int newMin,
int newMax,
boolean adjusting)
Sets all of the BoundedRangeModel properties after forcing
the arguments to obey the usual constraints: |
|
void |
setValue(int n)
Sets the current value of the model. |
|
void |
setValueIsAdjusting(boolean b)
Sets the valueIsAdjusting property. |
|
String |
toString()
Returns a string that displays all of the BoundedRangeModel properties. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected transient ChangeEvent changeEvent
ChangeEvent is needed per model instance since the
event's only (read-only) state is the source property. The source
of events generated here is always "this".
protected EventListenerList listenerList
| Constructor Detail |
|---|
public DefaultBoundedRangeModel()
value = 0
extent = 0
minimum = 0
maximum = 100
adjusting = false
public DefaultBoundedRangeModel(int value,
int extent,
int min,
int max)
IllegalArgumentException if the following
constraints aren't satisfied:
min <= value <= value+extent <= max
| Method Detail |
|---|
public int getValue()
getValue in interface BoundedRangeModelsetValue(int),
BoundedRangeModel.getValue()public int getExtent()
getExtent in interface BoundedRangeModelsetExtent(int),
BoundedRangeModel.getExtent()public int getMinimum()
getMinimum in interface BoundedRangeModelsetMinimum(int),
BoundedRangeModel.getMinimum()public int getMaximum()
getMaximum in interface BoundedRangeModelsetMaximum(int),
BoundedRangeModel.getMaximum()public void setValue(int n)
minimum <= value <= value+extent <= maximum
setValue in interface BoundedRangeModeln - the model's new valueBoundedRangeModel.setValue(int)public void setExtent(int n)
minimum <= value <= value+extent <= maximum
setExtent in interface BoundedRangeModeln - the model's new extentBoundedRangeModel.setExtent(int)public void setMinimum(int n)
minimum <= value <= value+extent <= maximum
setMinimum in interface BoundedRangeModeln - the model's new minimumgetMinimum(),
BoundedRangeModel.setMinimum(int)public void setMaximum(int n)
minimum <= value <= value+extent <= maximum
setMaximum in interface BoundedRangeModeln - the model's new maximumBoundedRangeModel.setMaximum(int)public void setValueIsAdjusting(boolean b)
valueIsAdjusting property.
setValueIsAdjusting in interface BoundedRangeModelb - true if the upcoming changes to the value property are part of a seriesgetValueIsAdjusting(),
setValue(int),
BoundedRangeModel.setValueIsAdjusting(boolean)public boolean getValueIsAdjusting()
getValueIsAdjusting in interface BoundedRangeModelvalueIsAdjusting propertysetValue(int),
BoundedRangeModel.getValueIsAdjusting()
public void setRangeProperties(int newValue,
int newExtent,
int newMin,
int newMax,
boolean adjusting)
BoundedRangeModel properties after forcing
the arguments to obey the usual constraints:
minimum <= value <= value+extent <= maximum
At most, one ChangeEvent is generated.
setRangeProperties in interface BoundedRangeModelnewValue - an int giving the current valuenewExtent - an int giving the amount by which the value can "jump"newMin - an int giving the minimum valuenewMax - an int giving the maximum valueadjusting - a boolean, true if a series of changes are in
progressBoundedRangeModel.setRangeProperties(int, int, int, int, boolean),
setValue(int),
setExtent(int),
setMinimum(int),
setMaximum(int),
setValueIsAdjusting(boolean)public void addChangeListener(ChangeListener l)
ChangeListener. The change listeners are run each
time any one of the Bounded Range model properties changes.
addChangeListener in interface BoundedRangeModell - the ChangeListener to addremoveChangeListener(javax.swing.event.ChangeListener),
BoundedRangeModel.addChangeListener(javax.swing.event.ChangeListener)public void removeChangeListener(ChangeListener l)
ChangeListener.
removeChangeListener in interface BoundedRangeModell - the ChangeListener to removeaddChangeListener(javax.swing.event.ChangeListener),
BoundedRangeModel.removeChangeListener(javax.swing.event.ChangeListener)public ChangeListener[] getChangeListeners()
DefaultBoundedRangeModel.
ChangeListeners
or an empty
array if no change listeners are currently registeredaddChangeListener(javax.swing.event.ChangeListener),
removeChangeListener(javax.swing.event.ChangeListener)protected void fireStateChanged()
ChangeListener's stateChanged method.
public String toString()
BoundedRangeModel properties.
public <T extends EventListener> T[] getListeners(Class<T> listenerType)
FooListeners
upon this model.
FooListeners
are registered using the addFooListener method.
You can specify the listenerType argument
with a class literal, such as FooListener.class.
For example, you can query a DefaultBoundedRangeModel
instance m
for its change listeners
with the following code:
listenerType - the type of listeners requested;
this parameter should specify an interface
that descends from java.util.EventListener
FooListeners
on this model,
or an empty array if no such
listeners have been added
ClassCastException - if listenerType doesn't
specify a class or interface that implements
java.util.EventListenergetChangeListeners()Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
6 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)