This commit is contained in:
pablo rodriguez 2022-05-25 09:14:27 +02:00
parent c78186be8c
commit ce81774df8
2 changed files with 44 additions and 0 deletions

1
bin/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/app/

43
src/app/test.java Normal file
View File

@ -0,0 +1,43 @@
package app;
import java.awt.EventQueue;
import javax.swing.JFrame;
public class test {
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
test window = new test();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public test() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}