Menu

[r2]: / GraphScript / ls / graph / Main.java  Maximize  Restore  History

Download this file

35 lines (27 with data), 630 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package ls.graph;
import javax.swing.JSplitPane;
import ls.graph.ui.MainWindow;
import ls.util.Utils;
import org.swixml.SwingEngine;
import edu.uci.ics.jung.graph.Graph;
import edu.uci.ics.jung.graph.impl.DirectedSparseGraph;
public class Main
{
private SwingEngine swingEngine;
private JSplitPane spltMain;
private ScriptPanel scriptPanel;
private void show()
{
MainWindow mainWindow = new MainWindow();
mainWindow.setVisible(true);
}
/**
* Entry point of the program
* @param args
*/
public static void main(String[] args)
{
Main m = new Main();
m.show();
}
}
MongoDB Logo MongoDB