Package org.td

Source Code of org.td.Application

package org.td;

import javax.swing.SwingUtilities;

import org.td.ui.ApplicationController;
import org.td.ui.ApplicationFrame;

public class Application {

    public Application() {
        initApplication();
    }

    private void initApplication() {
        new ApplicationController();
    }

    public static void main(String[] args) {
        new Application();
    }
}
TOP

Related Classes of org.td.Application

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.