/* * Created on 12.08.2004 * * @author Jens Guenther */ package de.unirostock.FactoryMethod.example; import javax.swing.JFrame; import de.unirostock.FactoryMethod.example.gui.ShipRepairPanel; public class Application { public static void main(String[] args) { ShipRepairPanel panel = new ShipRepairPanel(); JFrame frame = new JFrame( "FabrikMethode Beispiel"); frame.setSize( 657, 320 ); frame.setContentPane( panel ); frame.setVisible( true ); } }