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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
/* */ package NET.worlds.scape;
/* */
/* */ import NET.worlds.console.Main;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class Property
/* */ {
/* */ protected Properties owner;
/* */ public static final int BOOL_TYPE = 0;
/* */ public static final int INT_TYPE = 1;
/* */ public static final int FLOAT_TYPE = 2;
/* */ public static final int STRING_TYPE = 3;
/* */ public static final int COLOR_TYPE = 4;
/* */ public static final int ENUM_TYPE = 5;
/* */ public static final int FLOAT_ARRAY_TYPE = 6;
/* */ public static final int POINT2_TYPE = 7;
/* */ public static final int POINT3_TYPE = 8;
/* */ public static final int TRANSFORM_TYPE = 9;
/* */ public static final int URL_TYPE = 10;
/* */ protected int index;
/* */ protected String name;
/* 65 */ protected int propertyType = 3;
/* */
/* */
/* */
/* */ protected PropEditor editor;
/* */
/* */
/* */
/* 73 */ public boolean helpExists = false;
/* */
/* 75 */ protected boolean canSetNull = false;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Property(Properties owner, int index, String name)
/* */ {
/* 90 */ this.owner = owner;
/* 91 */ this.index = index;
/* 92 */ this.name = name;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ public Property(Properties owner, int index, String name, boolean haveHelp)
/* */ {
/* 101 */ this.owner = owner;
/* 102 */ this.index = index;
/* 103 */ this.name = name;
/* 104 */ this.helpExists = haveHelp;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ Property setEditor(PropEditor editor)
/* */ {
/* 117 */ this.editor = editor;
/* 118 */ return this;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ public PropEditor getEditor()
/* */ {
/* 127 */ return this.editor;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ public Property allowSetNull()
/* */ {
/* 136 */ this.canSetNull = true;
/* 137 */ return this;
/* */ }
/* */
/* */ public boolean canSetNull() {
/* 141 */ return this.canSetNull;
/* */ }
/* */
/* */ public String getName() {
/* 145 */ return this.name;
/* */ }
/* */
/* */ public int getIndex()
/* */ {
/* 150 */ return this.index;
/* */ }
/* */
/* */ public Properties getOwner() {
/* 154 */ return this.owner;
/* */ }
/* */
/* */
/* */ public Object get()
/* */ {
/* 160 */ return operate(1, null);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public Object set(Object obj)
/* */ {
/* 173 */ return operate(2, obj);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public boolean equals(Object obj)
/* */ {
/* 183 */ return ((obj instanceof Property)) && (((Property)obj).owner == this.owner) &&
/* 184 */ (((Property)obj).index == this.index);
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ public int hashCode()
/* */ {
/* 193 */ return this.owner.hashCode() ^ this.index;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ protected Object operate(int func, Object value)
/* */ {
/* 209 */ if (Main.isMainThread())
/* 210 */ return safeOperate(func, value);
/* 211 */ return new CallbackPropertyOperator(this, func, value).getValue();
/* */ }
/* */
/* */
/* */
/* */ Object safeOperate(int func, Object value)
/* */ {
/* */ try
/* */ {
/* 220 */ Object ret = this.owner.properties(this.index, 0, func, value);
/* 221 */ if ((func > 1) && (func < 5) &&
/* 222 */ ((this.owner instanceof SuperRoot)))
/* 223 */ ((SuperRoot)this.owner).markEdited();
/* 224 */ return ret;
/* */ } catch (NoSuchPropertyException e) {
/* 226 */ if (!$assertionsDisabled) throw new AssertionError(); }
/* 227 */ return null;
/* */ }
/* */
/* */
/* */ public String toString()
/* */ {
/* 233 */ return getName();
/* */ }
/* */
/* */
/* 237 */ public void setPropertyType(int type) { this.propertyType = type; }
/* */
/* */ public String getPropertyType() { String retVal;
/* */ String retVal;
/* */ String retVal;
/* 242 */ String retVal; String retVal; String retVal; String retVal; String retVal; String retVal; String retVal; String retVal; switch (this.propertyType) {
/* */ case 0:
/* 244 */ retVal = "Boolean";
/* 245 */ break;
/* */ case 1:
/* 247 */ retVal = "Integer";
/* 248 */ break;
/* */ case 2:
/* 250 */ retVal = "Float";
/* 251 */ break;
/* */ case 3:
/* 253 */ retVal = "String";
/* 254 */ break;
/* */ case 4:
/* 256 */ retVal = "Color";
/* 257 */ break;
/* */ case 5:
/* 259 */ retVal = "Enumeration";
/* 260 */ break;
/* */ case 6:
/* 262 */ retVal = "Float Array";
/* 263 */ break;
/* */ case 7:
/* 265 */ retVal = "2D Point";
/* 266 */ break;
/* */ case 8:
/* 268 */ retVal = "3D Point";
/* 269 */ break;
/* */ case 9:
/* 271 */ retVal = "Transform";
/* 272 */ break;
/* */ default:
/* 274 */ retVal = "URL";
/* */ }
/* */
/* */
/* 278 */ return retVal;
/* */ }
/* */ }
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\Property.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|