blob: cb79e03cc0bf561dfbb9f6639e2f3bbc1e779948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package NET.worlds.scape;
public abstract interface Properties
{
public static final int ENUM = 0;
public static final int GET = 1;
public static final int SET = 2;
public static final int ADD = 3;
public static final int DEL = 4;
public static final int ADD_TEST = 5;
public abstract Object properties(int paramInt1, int paramInt2, int paramInt3, Object paramObject)
throws NoSuchPropertyException;
public abstract Object propertyParent();
}
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\Properties.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|