|
package gui;
|
|
|
|
import javax.swing.JFrame;
|
|
|
|
|
|
public class Gui {
|
|
public static void main(String[] args) {
|
|
JFrame jf = new JFrame();
|
|
|
|
jf.setTitle("Travel Buddy");
|
|
jf.setSize(400, 300);
|
|
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
|
|
jf.setVisible(true);
|
|
}
|
|
|
|
|
|
}
|