-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode18.java
308 lines (242 loc) · 6.9 KB
/
code18.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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import java.awt.GridBagLayout;
import java.awt.Button;
import java.awt.GridBagConstraints;
import java.awt.Frame;
import java.awt.*;
import java.awt.event.*;
import javax.swing.undo.StateEdit;
// ----------------------
// for FLOW LAYOUT
// ----------------------
// public class code18 extends Frame {
// Label l1,l2;
// Button b1,b2,b3,b4;
// code18(){
// super("my practice");
// FlowLayout f = new FlowLayout();
// f.setAlignment(FlowLayout.RIGHT);
// f.setHgap(40);
// f.setVgap(50);
// setLayout(f);
// l1 = new Label("this is moved");
// l2 = new Label("moved");
// b1= new Button("B1");
// b2= new Button("B2");
// b3= new Button("B3");
// b4= new Button("B4");
// add(l1);
// add(l2);
// add(b1);
// add(b2);
// add(b3);
// add(b4);
// System.out.println(f.getHgap());
// // setLayout(new FlowLayout(FlowLayout.LEFT,4,50));
// }
// public static void main(String[] args) {
// code18 c = new code18();
// c.setVisible(true);
// c.setSize(300,300);
// }
// }
// ----------------------
// for BORDER LAYOUT
// ----------------------
// public class code18 extends Frame{
// Button b1, b2, b3, b4, b5, b6;
// code18() {
// b1 = new Button("B1");
// b2 = new Button("B2");
// b3 = new Button("B3");
// b4 = new Button("B4");
// b5 = new Button("B5");
// b6 = new Button("B6");
// BorderLayout b = new BorderLayout();
// b.setHgap(10);
// b.setVgap(20);
// setLayout(b);
// add(b1, BorderLayout.NORTH);
// add(b2, BorderLayout.SOUTH);
// add(b3, BorderLayout.EAST);
// add(b4, BorderLayout.WEST);
// add(b5, BorderLayout.CENTER);
// add(b6, BorderLayout.CENTER);
// remove(b5);
// setSize(300,300);
// setVisible(true);
// System.out.println(getAlignmentX()+" "+getAlignmentY());
// }
// public static void main(String[] args) {
// code18 c = new code18();
// }
// }
// ----------------------
// for GRID LAYOUT
// ----------------------
// public class code18 extends Frame{
// Button b1, b2, b3, b4, b5, b6;
// code18() {
// b1 = new Button("B1");
// b2 = new Button("B2");
// b3 = new Button("B3");
// b4 = new Button("B4");
// b5 = new Button("B5");
// b6 = new Button("B6");
// GridLayout b = new GridLayout();
// b.setHgap(10);
// b.setVgap(20);
// b.setRows(3);
// b.setColumns(2);
// setLayout(b);
// add(b1);
// add(b2);
// add(b3);
// add(b4);
// add(b5);
// add(b6);
// setSize(300,300);
// setVisible(true);
// System.out.println(getAlignmentX()+" "+getAlignmentY());
// }
// public static void main(String[] args) {
// code18 c = new code18();
// }
// }
// ----------------------
// for CARD LAYOUT
// ----------------------
// public class code18 extends Frame implements ActionListener {
// Button b1, b2, b3, b4, b5, b6;
// CardLayout b;
// code18() {
// b1 = new Button("B1");
// b2 = new Button("B2");
// b3 = new Button("B3");
// b4 = new Button("B4");
// b5 = new Button("B5");
// b6 = new Button("B6");
// b = new CardLayout();
// b.setHgap(10);
// b.setVgap(20);
// setLayout(b);
// add(b1);
// add(b2);
// add(b3);
// add(b4);
// add(b5);
// add(b6);
// b1.addActionListener(this);
// b2.addActionListener(this);
// b3.addActionListener(this);
// b4.addActionListener(this);
// b5.addActionListener(this);
// setSize(300, 300);
// setVisible(true);
// }
// public void actionPerformed(ActionEvent e) {
// b.next(this);
// }
// public static void main(String[] args) {
// code18 c = new code18();
// }
// }
// ----------------------
// for GRIDBAG LAYOUT
// ----------------------
// public class code18 extends Frame{
// Button b1, b2, b3, b4, b5, b6;
// GridBagConstraints cx = new GridBagConstraints();
// code18() {
// GridBagLayout b = new GridBagLayout();
// setLayout(b);
// b1 = new Button("B1");
// cx.gridx=0;
// cx.gridy=0;
// cx.gridwidth=1;
// cx.gridheight=1;
// add(b1,cx);
// b2 = new Button("B2");
// cx.gridx=1;
// cx.gridy=0;
// cx.gridwidth=1;
// cx.gridheight=1;
// add(b2,cx);
// b3 = new Button("B3");
// cx.gridx=2;
// cx.gridy=0;
// cx.gridwidth=1;
// cx.gridheight=1;
// add(b3,cx);
// b4 = new Button("B4");
// cx.gridx=3;
// cx.gridy=0;
// cx.gridwidth=1;
// cx.gridheight=1;
// cx.fill = GridBagConstraints.HORIZONTAL;
// add(b4,cx);
// b5 = new Button("B5");
// cx.gridx=4;
// cx.gridy=0;
// cx.gridwidth=1;
// cx.gridheight=1;
// add(b5,cx);
// b6 = new Button("B6");
// cx.gridx=5;
// cx.gridy=0;
// // cx.gridwidth=1;
// // cx.gridheight=1;
// add(b6,cx);
// setSize(300,300);
// setVisible(true);
// }
// public static void main(String[] args) {
// code18 c = new code18();
// }
// }
// IMPORTANT PROGRAM
public class code18 extends Frame implements ActionListener {
Label l1, l2;
Button b1;
TextField t1, t2, t3;
code18() {
super("ID PASSWORD CHECK");
setBackground(Color.PINK);
GridLayout g = new GridLayout();
g.setRows(3);
g.setColumns(2);
g.setHgap(10);
g.setVgap(10);
setLayout(g);
l1 = new Label("ENTER USER NAME");
l2 = new Label("ENTER PASSWORD");
t1 = new TextField(15);
t2 = new TextField(15);
b1 = new Button("ENTER");
t3 = new TextField("null", 15);
t2.setEchoChar('*');
t3.setBackground(Color.GRAY);
add(l1);
add(t1);
add(l2);
add(t2);
add(b1);
add(t3);
b1.addActionListener(this);
t2.setEditable(true);
t3.setEditable(false);
setVisible(true);
setSize(400, 400);
}
public void actionPerformed(ActionEvent e) {
String str1 = t1.getText();
String str2 = t2.getText(); // Corrected from t1.getText()
if (str1.equals("kamakshi") && str2.equals("komal")) {
t3.setText("VALID");
} else {
t3.setText("INVALID");
}
}
public static void main(String[] args) {
code18 c = new code18();
}
}