/** * Created on 24.03.2005 * * @author Jens Guenther */ package de.unirostock.Prototype; public abstract class Prototype implements Cloneable { public abstract Object clone(); }