Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
JTextField textFieldOne = new JTextField();
JTextField textFieldTwo = new JTextField();
JTextField textFieldThree = new JTextField();
JTextField textFieldFour = new JTextField();
JButton clearButton = new JButton("Clear");
clearButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
textFieldOne.setText("");
textFieldTwo.setText("");
textFieldThree.setText("");
textFieldFour.setText("");
}
});