1
2
3
4
5
6
7
8
9
10
11
12
13 package org.gscg.common.gui.components.interactivespinner;
14
15 /***
16 * <p>
17 * (c) copyright 2005 <a href="http://www.simulation.tudelft.nl">Delft
18 * University of Technology </a>, the Netherlands. <br>
19 * See for project information <a
20 * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
21 *
22 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
23 * Delft, the Netherlands. All rights reserved.
24 *
25 * See for project information <a href="http://www.simulation.tudelft.nl/">
26 * www.simulation.tudelft.nl </a>.
27 *
28 * The source code and binary code of this software are proprietary information
29 * of Delft University of Technology.
30 *
31 * @author <a
32 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
33 * van Houten </a>
34 * @version $Revision: 1.1 $ $Date: 2005/06/16 12:33:56 $
35 * @since 1.1.3
36 */
37 public class SpinnerNumberModel extends javax.swing.SpinnerNumberModel
38 {
39 /***
40 * constructs a new SpinnerNumberModel
41 */
42 public SpinnerNumberModel()
43 {
44 super();
45 }
46
47 /***
48 * constructs a new SpinnerNumberModel
49 *
50 * @param value the value
51 * @param minimum the minimum
52 * @param maximum the maximum
53 * @param stepSize the step size
54 */
55 public SpinnerNumberModel(final double value, final double minimum,
56 final double maximum, final double stepSize)
57 {
58 super(value, minimum, maximum, stepSize);
59 }
60
61 /***
62 * constructs a new SpinnerNumberModel
63 *
64 * @param value the value
65 * @param minimum the minimum
66 * @param maximum the maximum
67 * @param stepSize the step size
68 */
69 public SpinnerNumberModel(final int value, final int minimum,
70 final int maximum, final int stepSize)
71 {
72 super(value, minimum, maximum, stepSize);
73 }
74
75 /***
76 * constructs a new SpinnerNumberModel
77 *
78 * @param value the value
79 * @param minimum the minimum
80 * @param maximum the maximum
81 * @param stepSize the step size
82 */
83 public SpinnerNumberModel(final Number value, final Comparable minimum,
84 final Comparable maximum, final Number stepSize)
85 {
86 super(value, minimum, maximum, stepSize);
87 }
88 }