/*
* 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");
}
});
}
}