1 package org.andromda.core.simpleuml;
2
3 import org.omg.uml.foundation.core.Classifier;
4
5 /***
6 * defines those methods missing from AssocationEnd in the UML 1.4 schema that are
7 * needed by the UML2EJB based code generation scripts.
8 *
9 * @author <A HREF="http://www.amowers.com">Anthony Mowers</A>
10 */
11 public interface UMLAssociationEnd
12 extends UMLModelElement
13 {
14 public Classifier getType();
15 public String getRoleName();
16 public Object getId();
17 public String getNavigable();
18 }