-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathControl.java
More file actions
193 lines (171 loc) · 5.85 KB
/
Control.java
File metadata and controls
193 lines (171 loc) · 5.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*
* Open Source Physics software is free software as described near the bottom of this code file.
*
* For additional information and documentation on Open Source Physics please see:
* <http://www.opensourcephysics.org/>
*/
package org.opensourcephysics.controls;
import java.awt.Color;
/**
* Graphical User Interfaces implement the Control interface.
*
* @author Joshua Gould
* @author Wolfgang Christian
* @version 1.0
*/
public interface Control {
static final Color NOT_EDITABLE_BACKGROUND = Color.WHITE;
/**
* Locks the control's interface. Values sent to the control will not
* update the display until the control is unlocked.
*
* @param lock boolean
*/
public void setLockValues(boolean lock);
/**
* Stores a name and a value in the control. GUI controls will usually display
* the name followed by an equal sign followed by the <code>toString<\code> representation
* of the object.
*
* @param name
* @param val
*/
public void setValue(String name, Object val);
/**
* Stores a name and a double value in the control. GUI controls will usually display
* the name followed by an equal sign followed by the <code>toString<\code> representation
* of the double.
*
* @param name
* @param val
*/
public void setValue(String name, double val);
/**
* Stores a name and an integer value in the control. GUI controls will usually display
* the name followed by an equal sign followed by the <code>toString<\code> representation
* of the integer.
*
* @param name
* @param val
*/
public void setValue(String name, int val);
/**
* Stores a name and a boolean value in the control. GUI controls will usually display
* the name followed by an equal sign followed by the <code>toString<\code> representation
* of the integer.
*
* @param name
* @param val
*/
public void setValue(String name, boolean val);
/**
* Gets a stored integer value from the control. GUI controls will usually allow the
* user to edit the value of the parameter.
*
* @param name
*
* @return the value of the parameter
*/
public int getInt(String name);
/**
* Gets a stored double value from the control. GUI controls will usually allow the
* user to edit the value of the parameter.
*
* @param name
*
* @return the value of the parameter
*/
public double getDouble(String name);
/**
* Gets the object with the specified property name.
*
* @param name the name
* @return the object
*/
public Object getObject(String name);
/**
* Gets a stored string from the control. Srings have usually been initialized
* with the <code>setValue (String name, Object val)<\code> method.
* GUI controls will usually allow the user to edit the value of the parameter.
*
* @param name
*
* @return the value of the parameter
*/
public String getString(String name);
/**
* Gets a stored boolean from the control. Srings have usually been initialized
* with the <code>setValue (String name, Object val)<\code> method.
* GUI controls will usually allow the user to edit the value of the parameter.
*
* @param name
*
* @return the value of the parameter
*/
public boolean getBoolean(String name);
/**
* Gets the names of all properties stored in this control.
*
* @return List
*/
public java.util.Collection<String> getPropertyNames();
/**
* Prints a string in the control's message area followed by a CR and LF.
* GUI controls will usually display messages in a non-editable text area.
*
* @param s
*/
public void println(String s);
/**
* Prints a blank line in the control's message area. GUI controls will usually display
* messages in a non-editable text area.
*/
public void println();
/**
* Prints a string in the control's message area.
* GUI controls will usually display messages in a non-editable text area.
*
* @param s
*/
public void print(String s);
/**
* Clears all text from the control's message area.
*/
public void clearMessages();
/**
* Clears all text from the control's data input area.
*/
public void clearValues();
/**
* Notifies the control when a calculation has completed.
* Some controls, such as the animation control, change their appearance
* during a calculation. A completed calculation, such as when a
* predetermined tolerance is reached, can call this method. The message will
* be displayed in the control's message area.
*
* @param message
*/
public void calculationDone(String message);
}
/*
* Open Source Physics software is free software; you can redistribute
* it and/or modify it under the terms of the GNU General Public License (GPL) as
* published by the Free Software Foundation; either version 2 of the License,
* or(at your option) any later version.
* Code that uses any portion of the code in the org.opensourcephysics package
* or any subpackage (subdirectory) of this package must must also be be released
* under the GNU GPL license.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston MA 02111-1307 USA
* or view the license online at http://www.gnu.org/copyleft/gpl.html
*
* Copyright (c) 2007 The Open Source Physics project
* http://www.opensourcephysics.org
*/