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