You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
388 B
19 lines
388 B
package ui;
|
|
|
|
import javax.swing.*;
|
|
|
|
public class Gui {
|
|
//public Gui() {
|
|
// JLabel label = new JLabel("Hello World");
|
|
|
|
// JFrame.setDefaultLookAndFeelDecorated(true);
|
|
// JFrame f = new JFrame("Hello World");
|
|
// f.setSize(300,150);
|
|
// f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
// f.add(label);
|
|
|
|
// f.setVisible(true);
|
|
//}
|
|
}
|