Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package Aula0905;

import javax.swing.JFrame;

public class TestaTextField {

public static void main(String[] args) {

TextFieldFrame textFieldFrame = new TextFieldFrame();


textFieldFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
textFieldFrame.setSize(350,200);
textFieldFrame.setVisible(true);

You might also like