/**
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 *
 * Copyright (C)
 * <a href="http://www.inab.org">Spanish National Institute of Bioinformatics (INB)</a>
 * <a href="http://www.bsc.es">Barcelona Supercomputing Center (BSC)</a>
 * <a href="http://inb.bsc.es">Computational Node 6</a>
 */

package org.inb.biomoby.generator.gui;

import java.awt.BorderLayout;
import javax.swing.JApplet;
import javax.swing.JFrame;

/**
 * @author Dmitry Repchevsky
 */

public class Main extends JApplet
{
    public Main()
    {
        MainPanel panel = new MainPanel();
        add(panel, BorderLayout.CENTER);
    }

    public static void main(String[] args)
    {
        JFrame frame = new JFrame("INB Moby Generator");

        Main main = new Main();

        frame.add(main, BorderLayout.CENTER);

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        frame.setSize(600, 400);
        frame.setVisible(true);
    }
}
