package org.omg.uml.behavioralelements.commonbehavior; /** * Exception class proxy interface. * * <p><em><strong>Note:</strong> This type should not be subclassed or implemented * by clients. It is generated from a MOF metamodel and automatically implemented * by MDR (see <a href="http://mdr.netbeans.org/">mdr.netbeans.org</a>).</em></p> */ public interface UmlExceptionClass extends javax.jmi.reflect.RefClass { /** * The default factory operation used to create an instance object. * @return The created instance object. */ public UmlException createUmlException(); /** * Creates an instance object having attributes initialized by the passed * values. * @param name * @param visibility * @param isSpecification * @param isRoot * @param isLeaf * @param isAbstract * @return The created instance object. */ public UmlException createUmlException(java.lang.String name, org.omg.uml.foundation.datatypes.VisibilityKind visibility, boolean isSpecification, boolean isRoot, boolean isLeaf, boolean isAbstract); }