/** * Created on 24.03.2005 * * @author Jens Guenther */ package de.unirostock.Prototype; public class Client { public void operation() { } /** * * @uml.property name="prototype" * @uml.associationEnd inverse="client:de.unirostock.Prototype.Prototype" multiplicity="(1 1)" */ private Prototype itsPrototype; /** * * @uml.property name="prototype" */ public Prototype getPrototype() { return itsPrototype; } /** * * @uml.property name="prototype" */ public void setPrototype(Prototype itsPrototype) { this.itsPrototype = itsPrototype; } }