API java : SpinnerNumberModel


javax.swing
Class SpinnerNumberModel

java.lang.Object
  extended by javax.swing.AbstractSpinnerModel
      extended by javax.swing.SpinnerNumberModel
All Implemented Interfaces:
Serializable, SpinnerModel

public class SpinnerNumberModel
extends AbstractSpinnerModel
implements Serializable

A SpinnerModel for sequences of numbers. The upper and lower bounds of the sequence are defined by properties called minimum and maximum. The size of the increase or decrease computed by the nextValue and previousValue methods is defined by a property called stepSize. The minimum and maximum properties can be null to indicate that the sequence has no lower or upper limit. All of the properties in this class are defined in terms of two generic types: Number and Comparable, so that all Java numeric types may be accommodated. Internally, there's only support for values whose type is one of the primitive Number types: Double, Float, Long, Integer, Short, or Byte.

To create a SpinnerNumberModel for the integer range zero to one hundred, with fifty as the initial value, one could write:

  1. Integer value = new Integer(50);
  2. Integer min = new Integer(0);
  3. Integer max = new Integer(100);
  4. Integer step = new Integer(1);
  5. SpinnerNumberModel model = new SpinnerNumberModel(value, min, max, step);
  6. int fifty = model.getNumber().intValue();

Spinners for integers and doubles are common, so special constructors for these cases are provided. For example to create the model in the previous example, one could also write:

  1. SpinnerNumberModel model = new SpinnerNumberModel(50, 0, 100, 1);

This model inherits a ChangeListener. The ChangeListeners are notified whenever the model's value, stepSize, minimum, or maximum properties changes.

Since:
1.4
See Also:
JSpinner, SpinnerModel, AbstractSpinnerModel, SpinnerListModel, SpinnerDateModel

Field Summary
 
Fields inherited from class javax.swing.AbstractSpinnerModel
listenerList
 
Constructor Summary
SpinnerNumberModel()
          Constructs a SpinnerNumberModel with no minimum or maximum value, stepSize equal to one, and an initial value of zero.
SpinnerNumberModel(double value, double minimum, double maximum, double stepSize)
          Constructs a SpinnerNumberModel with the specified value, minimum/maximum bounds, and stepSize.
SpinnerNumberModel(int value, int minimum, int maximum, int stepSize)
          Constructs a SpinnerNumberModel with the specified value, minimum/maximum bounds, and stepSize.
SpinnerNumberModel(Number value, Comparable minimum, Comparable maximum, Number stepSize)
          Constructs a SpinnerModel that represents a closed sequence of numbers from minimum to maximum.
 
Method Summary
 Comparable getMaximum()
          Returns the last number in the sequence.
 Comparable getMinimum()
          Returns the first number in this sequence.
 Object getNextValue()
          Returns the next number in the sequence.
 Number getNumber()
          Returns the value of the current element of the sequence.
 Object getPreviousValue()
          Returns the previous number in the sequence.
 Number getStepSize()
          Returns the size of the value change computed by the getNextValue and getPreviousValue methods.
 Object getValue()
          Returns the value of the current element of the sequence.
 void setMaximum(Comparable maximum)
          Changes the upper bound for numbers in this sequence.
 void setMinimum(Comparable minimum)
          Changes the lower bound for numbers in this sequence.
 void setStepSize(Number stepSize)
          Changes the size of the value change computed by the getNextValue and getPreviousValue methods.
 void setValue(Object value)
          Sets the current value for this sequence.
 
Methods inherited from class javax.swing.AbstractSpinnerModel
addChangeListener, fireStateChanged, getChangeListeners, getListeners, removeChangeListener
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpinnerNumberModel

public SpinnerNumberModel(Number value,
                          Comparable minimum,
                          Comparable maximum,
                          Number stepSize)
Constructs a SpinnerModel that represents a closed sequence of numbers from minimum to maximum. The nextValue and previousValue methods compute elements of the sequence by adding or subtracting stepSize respectively. All of the parameters must be mutually Comparable, value and stepSize must be instances of Integer Long, Float, or Double.

The minimum and maximum parameters can be null to indicate that the range doesn't have an upper or lower bound. If value or stepSize is null, or if both minimum and maximum are specified and mininum > maximum then an IllegalArgumentException is thrown. Similarly if (minimum <= value <= maximum) is false, an IllegalArgumentException is thrown.

Parameters:
value - the current (non null) value of the model
minimum - the first number in the sequence or null
maximum - the last number in the sequence or null
stepSize - the difference between elements of the sequence
Throws:
IllegalArgumentException - if stepSize or value is null or if the following expression is false: minimum <= value <= maximum

SpinnerNumberModel

public SpinnerNumberModel(int value,
                          int minimum,
                          int maximum,
                          int stepSize)
Constructs a SpinnerNumberModel with the specified value, minimum/maximum bounds, and stepSize.

Parameters:
value - the current value of the model
minimum - the first number in the sequence
maximum - the last number in the sequence
stepSize - the difference between elements of the sequence
Throws:
IllegalArgumentException - if the following expression is false: minimum <= value <= maximum

SpinnerNumberModel

public SpinnerNumberModel(double value,
                          double minimum,
                          double maximum,
                          double stepSize)
Constructs a SpinnerNumberModel with the specified value, minimum/maximum bounds, and stepSize.

Parameters:
value - the current value of the model
minimum - the first number in the sequence
maximum - the last number in the sequence
stepSize - the difference between elements of the sequence
Throws:
IllegalArgumentException - if the following expression is false: minimum <= value <= maximum

SpinnerNumberModel

public SpinnerNumberModel()
Constructs a SpinnerNumberModel with no minimum or maximum value, stepSize equal to one, and an initial value of zero.

Method Detail

setMinimum

public void setMinimum(Comparable minimum)
Changes the lower bound for numbers in this sequence. If minimum is null, then there is no lower bound. No bounds checking is done here; the new minimum value may invalidate the (minimum <= value <= maximum) invariant enforced by the constructors. This is to simplify updating the model, naturally one should ensure that the invariant is true before calling the getNextValue, getPreviousValue, or setValue methods.

Typically this property is a Number of the same type as the value however it's possible to use any Comparable with a compareTo method for a Number with the same type as the value. For example if value was a Long, minimum might be a Date subclass defined like this:

  1. MyDate extends Date { // Date already implements Comparable
  2. public int compareTo(Long o) {
  3. long t = getTime();
  4. return (t < o.longValue() ? -1 : (t == o.longValue() ? 0 : 1));
  5. }
  6. }

This method fires a ChangeEvent if the minimum has changed.

Parameters:
minimum - a Comparable that has a compareTo method for Numbers with the same type as value
See Also:
getMinimum(), setMaximum(java.lang.Comparable), SpinnerModel.addChangeListener(javax.swing.event.ChangeListener)

getMinimum

public Comparable getMinimum()
Returns the first number in this sequence.

Returns:
the value of the minimum property
See Also:
setMinimum(java.lang.Comparable)

setMaximum

public void setMaximum(Comparable maximum)
Changes the upper bound for numbers in this sequence. If maximum is null, then there is no upper bound. No bounds checking is done here; the new maximum value may invalidate the (minimum <= value < maximum) invariant enforced by the constructors. This is to simplify updating the model, naturally one should ensure that the invariant is true before calling the next, previous, or setValue methods.

Typically this property is a Number of the same type as the value however it's possible to use any Comparable with a compareTo method for a Number with the same type as the value. See setMinimum for an example.

This method fires a ChangeEvent if the maximum has changed.

Parameters:
maximum - a Comparable that has a compareTo method for Numbers with the same type as value
See Also:
getMaximum(), setMinimum(java.lang.Comparable), SpinnerModel.addChangeListener(javax.swing.event.ChangeListener)

getMaximum

public Comparable getMaximum()
Returns the last number in the sequence.

Returns:
the value of the maximum property
See Also:
setMaximum(java.lang.Comparable)

setStepSize

public void setStepSize(Number stepSize)
Changes the size of the value change computed by the getNextValue and getPreviousValue methods. An IllegalArgumentException is thrown if stepSize is null.

This method fires a ChangeEvent if the stepSize has changed.

Parameters:
stepSize - the size of the value change computed by the getNextValue and getPreviousValue methods
See Also:
getNextValue(), getPreviousValue(), getStepSize(), SpinnerModel.addChangeListener(javax.swing.event.ChangeListener)

getStepSize

public Number getStepSize()
Returns the size of the value change computed by the getNextValue and getPreviousValue methods.

Returns:
the value of the stepSize property
See Also:
setStepSize(java.lang.Number)

getNextValue

public Object getNextValue()
Returns the next number in the sequence.

Specified by:
getNextValue in interface SpinnerModel
Returns:
value + stepSize or null if the sum exceeds maximum.
See Also:
SpinnerModel.getNextValue(), getPreviousValue(), setStepSize(java.lang.Number)

getPreviousValue

public Object getPreviousValue()
Returns the previous number in the sequence.

Specified by:
getPreviousValue in interface SpinnerModel
Returns:
value - stepSize, or null if the sum is less than minimum.
See Also:
SpinnerModel.getPreviousValue(), getNextValue(), setStepSize(java.lang.Number)

getNumber

public Number getNumber()
Returns the value of the current element of the sequence.

Returns:
the value property
See Also:
setValue(java.lang.Object)

getValue

public Object getValue()
Returns the value of the current element of the sequence.

Specified by:
getValue in interface SpinnerModel
Returns:
the value property
See Also:
setValue(java.lang.Object), getNumber()

setValue

public void setValue(Object value)
Sets the current value for this sequence. If value is null, or not a Number, an IllegalArgumentException is thrown. No bounds checking is done here; the new value may invalidate the (minimum <= value <= maximum) invariant enforced by the constructors. It's also possible to set the value to be something that wouldn't naturally occur in the sequence, i.e. a value that's not modulo the stepSize. This is to simplify updating the model, and to accommodate spinners that don't want to restrict values that have been directly entered by the user. Naturally, one should ensure that the (minimum <= value <= maximum) invariant is true before calling the next, previous, or setValue methods.

This method fires a ChangeEvent if the value has changed.

Specified by:
setValue in interface SpinnerModel
Parameters:
value - the current (non null) Number for this sequence
Throws:
IllegalArgumentException - if value is null or not a Number
See Also:
getNumber(), getValue(), SpinnerModel.addChangeListener(javax.swing.event.ChangeListener)

Ces informations proviennent du site de http://java.sun.com

Remarques

Contenu

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 :

Quels sont les motivations de cette démarche?

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.

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

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.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-2023
Document créé le 31/08/06 02:34, dernière modification le Vendredi 17 Juin 2011, 12:12
Source du document imprimé : http://www.gaudry.be/java-api-rf-javax/swing/SpinnerNumberModel.html Document affiché 1 fois ce mois de Juin.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
15832 documents
452 astuces.
549 niouzes.
3099 definitions.
447 membres.
8115 messages.

Document genere en :
0,74 seconde

Mises à jour :
Mises à jour du site
Citation (masquer)
Celui qui n'a pas peur n'est pas normal ; ça n'a rien à voir avec le courage.

Jean-Paul Sartre
 
l'infobrol
Nous sommes le Samedi 02 Juin 2012, 04:47, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)