-
Notifications
You must be signed in to change notification settings - Fork 2
/
TextField.java
77 lines (61 loc) · 2.22 KB
/
TextField.java
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
package javax.microedition.lcdui;
public class TextField extends Item {
public static final int ANY = 0;
public static final int EMAILADDR = 1;
public static final int NUMERIC = 2;
public static final int PHONENUMBER = 3;
public static final int URL = 4;
public static final int DECIMAL = 5;
public static final int PASSWORD = 0x10000;
public static final int UNEDITABLE = 0x20000;
public static final int SENSITIVE = 0x40000;
public static final int NON_PREDICTIVE = 0x80000;
public static final int INITIAL_CAPS_WORD = 0x10000;
public static final int INITIAL_CAPS_SENTANCE = 0x200000;
public static final int CONSTRAINT_MASK = 0xFFFF;
public TextField(String label, String text, int maxSize, int constraints) {
throw new UnsupportedOperationException();
}
public void delete(int offset, int length) {
throw new UnsupportedOperationException();
}
public int getCaretPosition() {
throw new UnsupportedOperationException();
}
public int getChars(char[] data) {
throw new UnsupportedOperationException();
}
public int getConstraints() {
throw new UnsupportedOperationException();
}
public int getMaxSize() {
throw new UnsupportedOperationException();
}
public String getString() {
throw new UnsupportedOperationException();
}
public void insert(char[] data, int offset, int length, int position) {
throw new UnsupportedOperationException();
}
public void insert(String src, int position) {
throw new UnsupportedOperationException();
}
public void setChars(char[] data, int offset, int length) {
throw new UnsupportedOperationException();
}
public void setConstraints(int constraints) {
throw new UnsupportedOperationException();
}
public void setInitialInputMode(String characterSubset) {
throw new UnsupportedOperationException();
}
public int setMaxSize(int maxSize) {
throw new UnsupportedOperationException();
}
public void setString(String text) {
throw new UnsupportedOperationException();
}
public int size() {
throw new UnsupportedOperationException();
}
}