FSF GCC merge 02/23/03
[official-gcc.git] / libjava / javax / swing / DefaultBoundedRangeModel.java
bloba0b1abd618dbc661d28565307a858d4724c33239
1 /* DefaultBoundedRangeModel.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package javax.swing;
40 // Imports
41 import java.io.*;
42 import java.util.*;
43 import javax.swing.event.*;
45 /**
46 * DefaultBoundedRangeModel
47 * @author Andrew Selkirk
48 * @version 1.0
50 public class DefaultBoundedRangeModel implements BoundedRangeModel, Serializable {
52 //-------------------------------------------------------------
53 // Variables --------------------------------------------------
54 //-------------------------------------------------------------
56 /**
57 * changeEvent
59 protected transient ChangeEvent changeEvent = new ChangeEvent(this);
61 /**
62 * listenerList
64 protected EventListenerList listenerList = new EventListenerList();
66 /**
67 * value
69 private int value;
71 /**
72 * extent
74 private int extent;
76 /**
77 * minimum
79 private int minimum;
81 /**
82 * maximum
84 private int maximum;
86 /**
87 * isAdjusting
89 private boolean isAdjusting;
92 //-------------------------------------------------------------
93 // Initialization ---------------------------------------------
94 //-------------------------------------------------------------
96 /**
97 * Constructor DefaultBoundedRangeModel
99 public DefaultBoundedRangeModel() {
100 setRangeProperties(0, 0, 0, 100, false);
101 } // DefaultBoundedRangeModel()
104 * Constructor DefaultBoundedRangeModel
105 * @param value TODO
106 * @param extent TODO
107 * @param minimum TODO
108 * @param maximum TODO
110 public DefaultBoundedRangeModel(int value, int extent,
111 int minimum, int maximum) {
112 setRangeProperties(value, extent, minimum, maximum, false);
113 } // DefaultBoundedRangeModel()
116 //-------------------------------------------------------------
117 // Methods ----------------------------------------------------
118 //-------------------------------------------------------------
121 * toString
122 * @returns String
124 public String toString() {
125 return null; // TODO
126 } // toString()
129 * getValue
130 * @returns int
132 public int getValue() {
133 return value;
134 } // getValue()
137 * setValue
138 * @param value TODO
140 public void setValue(int value) {
142 // Validate Constraints
143 if (minimum > value || value > (value + extent) ||
144 (value + extent) > maximum) {
145 throw new IllegalArgumentException("Invalid value property set");
146 } // if
148 // Set Value
149 this.value = value;
151 // Notification
152 fireStateChanged();
154 } // setValue()
157 * getExtent
158 * @returns int
160 public int getExtent() {
161 return extent;
162 } // getExtent()
165 * setExtent
166 * @param extent TODO
168 public void setExtent(int extent) {
170 // Validate Constraints
171 if (minimum > value || value > (value + extent) ||
172 (value + extent) > maximum) {
173 throw new IllegalArgumentException("Invalid extent property set");
174 } // if
176 // Set Extent
177 this.extent = extent;
179 // Notification
180 fireStateChanged();
182 } // setExtent()
185 * getMinimum
186 * @returns int
188 public int getMinimum() {
189 return minimum;
190 } // getMinimum()
193 * setMinimum
194 * @param minimum TODO
196 public void setMinimum(int minimum) {
198 // Validate Constraints
199 if (minimum > value || value > (value + extent) ||
200 (value + extent) > maximum) {
201 throw new IllegalArgumentException("Invalid minimum property set");
202 } // if
204 // Set Minimum
205 this.minimum = minimum;
207 // Notification
208 fireStateChanged();
210 } // setMinimum()
213 * getMaximum
214 * @returns int
216 public int getMaximum() {
217 return maximum;
218 } // getMaximum()
221 * setMaximum
222 * @param maximum TODO
224 public void setMaximum(int maximum) {
226 // Validate Constraints
227 if (minimum > value || value > (value + extent) ||
228 (value + extent) > maximum) {
229 throw new IllegalArgumentException("Invalid maximum property set");
230 } // if
232 // Set Maximum
233 this.maximum = maximum;
235 // Notification
236 fireStateChanged();
238 } // setMaximum()
241 * getValueIsAdjusting
242 * @returns boolean
244 public boolean getValueIsAdjusting() {
245 return isAdjusting;
246 } // getValueIsAdjusting()
249 * setValueIsAdjusting
250 * @param isAdjusting TODO
252 public void setValueIsAdjusting(boolean isAdjusting) {
254 // Set isAdjusting
255 this.isAdjusting = isAdjusting;
257 // Notification
258 fireStateChanged();
260 } // setValueIsAdjusting()
263 * setRangeProperties
264 * @param value TODO
265 * @param extent TODO
266 * @param minimum TODO
267 * @param maximum TODO
268 * @param isAdjusting TODO
270 public void setRangeProperties(int value, int extent, int minimum,
271 int maximum, boolean isAdjusting) {
273 // Validate Constraints
274 if (minimum > value || value > (value + extent) ||
275 (value + extent) > maximum) {
276 throw new IllegalArgumentException("Invalid property set");
277 } // if
279 // Set Data
280 this.value = value;
281 this.extent = extent;
282 this.minimum = minimum;
283 this.maximum = maximum;
284 this.isAdjusting = isAdjusting;
286 // Notification
287 fireStateChanged();
289 } // setRangeProperties()
292 * addChangeListener
293 * @param listener TODO
295 public void addChangeListener(ChangeListener listener) {
296 listenerList.add(ChangeListener.class, listener);
297 } // addChangeListener()
300 * removeChangeListener
301 * @param listener TODO
303 public void removeChangeListener(ChangeListener listener) {
304 listenerList.remove(ChangeListener.class, listener);
305 } // removeChangeListener()
308 * fireStateChanged
310 protected void fireStateChanged() {
312 // Variables
313 ChangeListener listener;
314 EventListener[] listeners;
315 int index;
317 // Get Listeners
318 listeners = listenerList.getListeners(ChangeListener.class);
320 // Process Listeners
321 for (index = 0; index < listeners.length; index++) {
322 listener = (ChangeListener) listeners[index];
323 listener.stateChanged(changeEvent);
324 } // for
326 } // fireStateChanged()
329 * getListeners
330 * @param c TODO
331 * @returns EventListener[]
333 public EventListener[] getListeners(Class c) {
334 return listenerList.getListeners(c);
335 } // getListeners()
338 * getChangeListeners
340 public ChangeListener[] getChangeListeners()
342 // FIXME: implement this
343 return null;
347 } // DefaultBoundedRangeModel