1 | /* ProgressMonitor.java --
|
---|
2 | Copyright (C) 2002 Free Software Foundation, Inc.
|
---|
3 |
|
---|
4 | This file is part of GNU Classpath.
|
---|
5 |
|
---|
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.
|
---|
10 |
|
---|
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.
|
---|
15 |
|
---|
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.
|
---|
20 |
|
---|
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.
|
---|
25 |
|
---|
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. */
|
---|
37 |
|
---|
38 | package javax.swing;
|
---|
39 |
|
---|
40 | // Imports
|
---|
41 | import java.awt.*;
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * ProgressMonitor
|
---|
45 | * @author Andrew Selkirk
|
---|
46 | * @version 1.0
|
---|
47 | */
|
---|
48 | public class ProgressMonitor {
|
---|
49 |
|
---|
50 | //-------------------------------------------------------------
|
---|
51 | // Variables --------------------------------------------------
|
---|
52 | //-------------------------------------------------------------
|
---|
53 |
|
---|
54 | /**
|
---|
55 | * parentComponent
|
---|
56 | */
|
---|
57 | private Component component;
|
---|
58 |
|
---|
59 | /**
|
---|
60 | * note
|
---|
61 | */
|
---|
62 | private String note;
|
---|
63 |
|
---|
64 | /**
|
---|
65 | * message
|
---|
66 | */
|
---|
67 | private Object message;
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * millisToDecideToPopup
|
---|
71 | */
|
---|
72 | private int millisToDecideToPopup;
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * millisToPopup
|
---|
76 | */
|
---|
77 | private int millisToPopup;
|
---|
78 |
|
---|
79 | /**
|
---|
80 | * min
|
---|
81 | */
|
---|
82 | private int minimum;
|
---|
83 |
|
---|
84 | /**
|
---|
85 | * max
|
---|
86 | */
|
---|
87 | private int maximum;
|
---|
88 |
|
---|
89 |
|
---|
90 | //-------------------------------------------------------------
|
---|
91 | // Initialization ---------------------------------------------
|
---|
92 | //-------------------------------------------------------------
|
---|
93 |
|
---|
94 | /**
|
---|
95 | * Constructor ProgressMonitor
|
---|
96 | * @param component TODO
|
---|
97 | * @param message TODO
|
---|
98 | * @param note TODO
|
---|
99 | * @param minimum TODO
|
---|
100 | * @param maximum TODO
|
---|
101 | */
|
---|
102 | public ProgressMonitor(Component component, Object message,
|
---|
103 | String note, int minimum, int maximum) {
|
---|
104 |
|
---|
105 | // Set Data
|
---|
106 | this.component = component;
|
---|
107 | this.message = message;
|
---|
108 | this.note = note;
|
---|
109 | this.minimum = minimum;
|
---|
110 | this.maximum = maximum;
|
---|
111 |
|
---|
112 | // TODO
|
---|
113 | } // ProgressMonitor()
|
---|
114 |
|
---|
115 |
|
---|
116 | //-------------------------------------------------------------
|
---|
117 | // Methods ----------------------------------------------------
|
---|
118 | //-------------------------------------------------------------
|
---|
119 |
|
---|
120 | /**
|
---|
121 | * close
|
---|
122 | */
|
---|
123 | public void close() {
|
---|
124 | // TODO
|
---|
125 | } // close()
|
---|
126 |
|
---|
127 | /**
|
---|
128 | * setProgress
|
---|
129 | * @param progress TODO
|
---|
130 | */
|
---|
131 | public void setProgress(int progress) {
|
---|
132 | // TODO
|
---|
133 | } // setProgress()
|
---|
134 |
|
---|
135 | /**
|
---|
136 | * getMinimum
|
---|
137 | * @returns int
|
---|
138 | */
|
---|
139 | public int getMinimum() {
|
---|
140 | return minimum; // TODO
|
---|
141 | } // getMinimum()
|
---|
142 |
|
---|
143 | /**
|
---|
144 | * setMinimum
|
---|
145 | * @param minimum TODO
|
---|
146 | */
|
---|
147 | public void setMinimum(int minimum) {
|
---|
148 | this.minimum = minimum;
|
---|
149 | // TODO
|
---|
150 | } // setMinimum()
|
---|
151 |
|
---|
152 | /**
|
---|
153 | * getMaximum
|
---|
154 | * @returns int
|
---|
155 | */
|
---|
156 | public int getMaximum() {
|
---|
157 | return maximum; // TODO
|
---|
158 | } // getMaximum()
|
---|
159 |
|
---|
160 | /**
|
---|
161 | * setMaximum
|
---|
162 | * @param maximum TODO
|
---|
163 | */
|
---|
164 | public void setMaximum(int maximum) {
|
---|
165 | this.maximum = maximum;
|
---|
166 | // TODO
|
---|
167 | } // setMaximum()
|
---|
168 |
|
---|
169 | /**
|
---|
170 | * isCanceled
|
---|
171 | * @returns boolean
|
---|
172 | */
|
---|
173 | public boolean isCanceled() {
|
---|
174 | return false; // TODO
|
---|
175 | } // isCanceled()
|
---|
176 |
|
---|
177 | /**
|
---|
178 | * getMillisToDecideToPopup
|
---|
179 | * @returns int
|
---|
180 | */
|
---|
181 | public int getMillisToDecideToPopup() {
|
---|
182 | return millisToDecideToPopup; // TODO
|
---|
183 | } // getMillisToDecideToPopup()
|
---|
184 |
|
---|
185 | /**
|
---|
186 | * setMillisToDecideToPopup
|
---|
187 | * @param time TODO
|
---|
188 | */
|
---|
189 | public void setMillisToDecideToPopup(int time) {
|
---|
190 | millisToDecideToPopup = time;
|
---|
191 | // TODO
|
---|
192 | } // setMillisToDecideToPopup()
|
---|
193 |
|
---|
194 | /**
|
---|
195 | * getMillisToPopup
|
---|
196 | * @returns int
|
---|
197 | */
|
---|
198 | public int getMillisToPopup() {
|
---|
199 | return millisToPopup; // TODO
|
---|
200 | } // getMillisToPopup()
|
---|
201 |
|
---|
202 | /**
|
---|
203 | * setMillisToPopup
|
---|
204 | * @param time TODO
|
---|
205 | */
|
---|
206 | public void setMillisToPopup(int time) {
|
---|
207 | millisToPopup = time;
|
---|
208 | // TODO
|
---|
209 | } // setMillisToPopup()
|
---|
210 |
|
---|
211 | /**
|
---|
212 | * getNote
|
---|
213 | * @returns String
|
---|
214 | */
|
---|
215 | public String getNote() {
|
---|
216 | return note; // TODO
|
---|
217 | } // getNote()
|
---|
218 |
|
---|
219 | /**
|
---|
220 | * setNote
|
---|
221 | * @param note TODO
|
---|
222 | */
|
---|
223 | public void setNote(String note) {
|
---|
224 | this.note = note;
|
---|
225 | // TODO
|
---|
226 | } // setNote()
|
---|
227 |
|
---|
228 |
|
---|
229 | } // ProgressMonitor
|
---|