Package com.stripbandunk.tutorial.customizemessagebox

Source Code of com.stripbandunk.tutorial.customizemessagebox.App

/*
*  Copyright (c) 2011, StripBandunk and/or its affiliates. All rights reserved.
*
*       http://stripbandunk.com/
*
*  STRIPBANDUNK PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package com.stripbandunk.tutorial.customizemessagebox;

import com.stripbandunk.tutorial.customizemessagebox.widget.Form;
import javax.swing.SwingUtilities;

/**
*
* @author Eko Kurniawan Khannedy
*/
public class App implements Runnable {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        App app = new App();
        SwingUtilities.invokeLater(app);
    }

    @Override
    public void run() {
        Form form = new Form();
        form.setVisible(true);
    }
}
TOP

Related Classes of com.stripbandunk.tutorial.customizemessagebox.App

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.