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