2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / javax / swing / ProgressMonitor.java
blobc3e01b5c0181c8727f9f06f6a8316fc713c23e74
1 /* ProgressMonitor.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.awt.*;
43 /**
44 * ProgressMonitor
45 * @author Andrew Selkirk
46 * @version 1.0
48 public class ProgressMonitor {
50 //-------------------------------------------------------------
51 // Variables --------------------------------------------------
52 //-------------------------------------------------------------
54 /**
55 * parentComponent
57 private Component component;
59 /**
60 * note
62 private String note;
64 /**
65 * message
67 private Object message;
69 /**
70 * millisToDecideToPopup
72 private int millisToDecideToPopup;
74 /**
75 * millisToPopup
77 private int millisToPopup;
79 /**
80 * min
82 private int minimum;
84 /**
85 * max
87 private int maximum;
90 //-------------------------------------------------------------
91 // Initialization ---------------------------------------------
92 //-------------------------------------------------------------
94 /**
95 * Constructor ProgressMonitor
96 * @param component TODO
97 * @param message TODO
98 * @param note TODO
99 * @param minimum TODO
100 * @param maximum TODO
102 public ProgressMonitor(Component component, Object message,
103 String note, int minimum, int maximum) {
105 // Set Data
106 this.component = component;
107 this.message = message;
108 this.note = note;
109 this.minimum = minimum;
110 this.maximum = maximum;
112 // TODO
113 } // ProgressMonitor()
116 //-------------------------------------------------------------
117 // Methods ----------------------------------------------------
118 //-------------------------------------------------------------
121 * close
123 public void close() {
124 // TODO
125 } // close()
128 * setProgress
129 * @param progress TODO
131 public void setProgress(int progress) {
132 // TODO
133 } // setProgress()
136 * getMinimum
137 * @returns int
139 public int getMinimum() {
140 return minimum; // TODO
141 } // getMinimum()
144 * setMinimum
145 * @param minimum TODO
147 public void setMinimum(int minimum) {
148 this.minimum = minimum;
149 // TODO
150 } // setMinimum()
153 * getMaximum
154 * @returns int
156 public int getMaximum() {
157 return maximum; // TODO
158 } // getMaximum()
161 * setMaximum
162 * @param maximum TODO
164 public void setMaximum(int maximum) {
165 this.maximum = maximum;
166 // TODO
167 } // setMaximum()
170 * isCanceled
171 * @returns boolean
173 public boolean isCanceled() {
174 return false; // TODO
175 } // isCanceled()
178 * getMillisToDecideToPopup
179 * @returns int
181 public int getMillisToDecideToPopup() {
182 return millisToDecideToPopup; // TODO
183 } // getMillisToDecideToPopup()
186 * setMillisToDecideToPopup
187 * @param time TODO
189 public void setMillisToDecideToPopup(int time) {
190 millisToDecideToPopup = time;
191 // TODO
192 } // setMillisToDecideToPopup()
195 * getMillisToPopup
196 * @returns int
198 public int getMillisToPopup() {
199 return millisToPopup; // TODO
200 } // getMillisToPopup()
203 * setMillisToPopup
204 * @param time TODO
206 public void setMillisToPopup(int time) {
207 millisToPopup = time;
208 // TODO
209 } // setMillisToPopup()
212 * getNote
213 * @returns String
215 public String getNote() {
216 return note; // TODO
217 } // getNote()
220 * setNote
221 * @param note TODO
223 public void setNote(String note) {
224 this.note = note;
225 // TODO
226 } // setNote()
229 } // ProgressMonitor