/** * Created on 24.03.2005 * * @author Jens Guenther */ package de.unirostock.Singleton; public class Singleton { /** * * @uml.property name="instance" multiplicity="(0 1)" */ private static Singleton instance; /** * * @uml.property name="instance" */ public static Singleton getInstance() { return instance; } private Singleton() { } }