1 package org.andromda.core.simpleuml; 2 3 import java.util.Collection; 4 5 /*** 6 * defines those methods missing from the Model 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 UMLModel 12 { 13 public Collection getPackages(); 14 15 }