Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (33 loc) · 991 Bytes

File metadata and controls

36 lines (33 loc) · 991 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package chapter16;
/* J16_15.java */
/* Using TextField Component */
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class J16_15 extends Applet implements ActionListener {
TextField email, pass;
public void init() {
Label lblEmail = new Label("Email: ", Label.RIGHT);
Label lblPassword = new Label("Password: ", Label.RIGHT);
email = new TextField(20);
pass = new TextField(10);
pass.setEchoChar('*');
add(lblEmail);
add(email);
add(lblPassword);
add(pass);
// register to receive action events
email.addActionListener(this);
pass.addActionListener(this);
}
// User pressed Enter.
public void actionPerformed(ActionEvent ae) {
repaint();
}
public void paint(Graphics g) {
g.drawString("Email: " + email.getText(), 10, 80);
g.drawString("Selected text in email: "
+ email.getSelectedText(), 10, 100);
g.drawString("Password: " + pass.getText(), 10, 120);
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.