Package semestralka

Source Code of semestralka.Semestralka

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package semestralka;

import javax.swing.JFrame;
import semestralkaGUI.MainFrame;


/**
*
* @author frantisek
*/

public class Semestralka {

    public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JFrame window = new MainFrame("RegexDerivator");
            }
        });
       
    }
}
TOP

Related Classes of semestralka.Semestralka

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.