1 package org.andromda.core.simpleuml;
2
3 import java.util.Collection;
4
5 import org.omg.uml.foundation.datatypes.VisibilityKind;
6
7 /***
8 * defines those methods missing from the Operation 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 UMLOperation
14 extends UMLModelElement
15 {
16 public VisibilityKind getVisibility();
17 public Collection getParameters();
18 public Object getType();
19 }