View Javadoc

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