package solution; /** * Contains the main method, which is used to call our JFrame * * @author uphusar. Created Oct 2, 2011. */ public class Main { /** * The main method, which will only be used to call the constructor of our * frame. * * @param args */ public static void main(String[] args) { new GUI(); } }