/* * Created on 12.08.2004 * * @author Jens Guenther */ package de.unirostock.FactoryMethod.example; import javax.swing.JApplet; import de.unirostock.FactoryMethod.example.gui.ShipRepairPanel; public class WebApp extends JApplet { public void init() { ShipRepairPanel mp = new ShipRepairPanel(); setContentPane( mp ); } }