source: proiecte/ptvs/src/vnsim/socialNet/startGraph.java @ 31

Last change on this file since 31 was 31, checked in by (none), 14 years ago
File size: 291 bytes
Line 
1package vnsim.socialNet;
2
3import javax.swing.JFrame;
4
5public class startGraph {
6        public static void start(){
7                final JFrame frame = new JFrame();
8                frame.setSize(800, 520);
9                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
10               
11                frame.setVisible(true);
12                //return 1;
13        }
14}
Note: See TracBrowser for help on using the repository browser.