import javax.swing.JFrame;

public class Main {
    public static void main(String[] args)  {

        Meta applet = new Meta();
        applet.init();
        JFrame frame = new JFrame();
        frame.setTitle("Class Explorer");
        frame.setSize(800, 600);
        frame.setVisible(true);
        frame.add(applet);
        frame.setResizable(false);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
}
