Package main

Source Code of main.Launcher2setMVG

package main;


import javax.swing.JFrame;

import gui.TwoSetItemSelectionFrame;


public class Launcher2setMVG {

    /**
     * @param args
     */
    public static void main(String[] args) {
        String[] dummy = {
            "Item1", "Item2", "Item3", "Item4", "Item5", "Item6",
            "Item7", "Item8", "Item9", "Item10", "Item11", "Item12", "Item13",
            "Item14", "Item15", "Item16", "Item17", "Item18", "Item19", "Item20",
            "Item21", "Item22", "Item23", "Item24", "Item25", "Item26", "Item27",
            "Item28", "Item29", "Item30" };

        JFrame jItemSelectionTwoSet_MV_GTestFrame = new TwoSetItemSelectionFrame();

        jItemSelectionTwoSet_MV_GTestFrame.setLocation(50, 50);
        jItemSelectionTwoSet_MV_GTestFrame.setSize(650, 650);
        jItemSelectionTwoSet_MV_GTestFrame.setVisible(true);

        // TODO Auto-generated method stub

    }

}
TOP

Related Classes of main.Launcher2setMVG

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.