Add license clarification.
[official-gcc.git] / libjava / java / awt / Adjustable.java
blobce7b5bb8ddbfe7ec5d3f2dda26ed762455eaecda
1 /* Adjustable.java -- Objects with a numeric adjustment scale.
2 Copyright (C) 1999 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. */
39 package java.awt;
41 import java.awt.event.AdjustmentListener;
43 /**
44 * This interface is for objects that take a numeric value that
45 * can be adjusted within a bounded range. For example, a scroll bar.
47 * @author Aaron M. Renn (arenn@urbanophile.com)
49 public interface Adjustable
53 * Static Variables
56 /**
57 * Constant for a horizontal orientation
59 public static final int HORIZONTAL = 0;
61 /**
62 * Constant for a vertical orientation
64 public static final int VERTICAL = 1;
66 /*************************************************************************/
69 * Instance Methods
72 /**
73 * Returns the current value of the object.
75 * @return The current value of the object.
77 public abstract int
78 getValue();
80 /*************************************************************************/
82 /**
83 * Sets the current value of the object.
85 * @param value The current value of the object.
87 public abstract void
88 setValue(int value);
90 /*************************************************************************/
92 /**
93 * Returns the orientation of the object, either <code>HORIZONTAL</code>
94 * or <code>VERTICAL</code>.
96 * @return The orientation of this object.
98 public abstract int
99 getOrientation();
101 /*************************************************************************/
104 * Returns the minimum value this object can take.
106 * @return The minimum value this object can take.
108 public abstract int
109 getMinimum();
111 /*************************************************************************/
114 * Sets the minimum value this object can take to the specified value.
116 * @param minimum The new minimum value for this object.
118 public abstract void
119 setMinimum(int minimum);
121 /*************************************************************************/
124 * Returns the maximum value this object can take.
126 * @return The maximum value this object can take.
128 public abstract int
129 getMaximum();
131 /*************************************************************************/
134 * Sets the maximum value this object can take to the specified value.
136 * @param maximum The new maximum value for this object.
138 public abstract void
139 setMaximum(int maximum);
141 /*************************************************************************/
144 * Returns the increment value for incrementing by units.
146 * @return The unit increment value.
148 public abstract int
149 getUnitIncrement();
151 /*************************************************************************/
154 * Sets the increment value for incrementing by units to the specified value.
156 * @param increment The unit increment value.
158 public abstract void
159 setUnitIncrement(int increment);
161 /*************************************************************************/
164 * Returns the increment value for incrementing by blocks.
166 * @return The block increment value.
168 public abstract int
169 getBlockIncrement();
171 /*************************************************************************/
174 * Sets the increment value for incrementing by blocks to the specified value.
176 * @param increment The block increment value.
178 public abstract void
179 setBlockIncrement(int increment);
181 /*************************************************************************/
184 * Returns the length of the indicator for this object.
186 * @return The indicator length.
188 public abstract int
189 getVisibleAmount();
191 /*************************************************************************/
194 * Sets the length of the indicator for this object to the specified value.
196 * @param length The indicator length
198 public abstract void
199 setVisibleAmount(int length);
201 /*************************************************************************/
204 * Adds a listener that will receive adjustment events for this object.
206 * @param listener The adjustment listener to add.
208 public abstract void
209 addAdjustmentListener(AdjustmentListener listener);
211 /*************************************************************************/
214 * Removes an adjustment listener from this object. It will no longer
215 * receive adjustment events.
217 * @param listener The adjustment listener to remove.
219 public abstract void
220 removeAdjustmentListener(AdjustmentListener listener);
222 } // interface Adjustable