/** * Created on 24.03.2005 * * @author Jens Guenther */ package de.unirostock.Prototype; public class ConcretePrototype extends Prototype { public Object clone() { return null; } }