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