Newer
Older
KA-Visual / src / mainClass.java
//import javax.swing.JFrame;

public class mainClass {
	public static void main(String[] args) {
		/*JFrame window = new JFrame();
		window.setSize(640, 480);
		window.setTitle("KA-visual");
		window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		window.setVisible(true);*/
		
		//getUrlResultsTest.runAll();
		
		showGrid sg = new showGrid();
		sg.run();
	}
}