/* * Created on 12.08.2004 * * @author Jens Guenther */ package de.unirostock.Prototype.example; import javax.swing.JFrame; import de.unirostock.Prototype.example.gui.MainPanel; public class Application { public static void main(String[] args) { MainPanel mp = new MainPanel(); JFrame frame = new JFrame( "Prototyp Beispiel"); frame.setSize( 940, 336 ); frame.setContentPane( mp ); frame.setVisible( true ); } }