Interface BehavioralFeature

    • Method Detail

      • getOwnedParameters

        MDWEList<Parameter> getOwnedParameters()
        Returns the value of the 'Owned Parameter' containment reference list. The list contents are of type Parameter. Specifies the ordered set of formal parameters of this BehavioralFeature.
        Returns:
        the value of the 'Owned Parameter' containment reference list.
        See Also:
        UMLPackage.getBehavioralFeature_OwnedParameter()
      • createOwnedParameter

        Parameter createOwnedParameter​(String name,
                                       Type type)
        Creates a new Parameter, with the specified 'Name', and 'Type', and appends it to the 'Owned Parameter' containment reference list.
        Parameters:
        name - The 'Name' for the new Parameter, or null.
        type - The 'Type' for the new Parameter, or null.
        Returns:
        The new Parameter.
        See Also:
        getOwnedParameters()
      • getOwnedParameter

        Parameter getOwnedParameter​(String name,
                                    Type type)
        Retrieves the first Parameter with the specified 'Name', and 'Type' from the 'Owned Parameter' containment reference list.
        Parameters:
        name - The 'Name' of the Parameter to retrieve, or null.
        type - The 'Type' of the Parameter to retrieve, or null.
        Returns:
        The first Parameter with the specified 'Name', and 'Type', or null.
        See Also:
        getOwnedParameters()
      • getOwnedParameter

        Parameter getOwnedParameter​(String name,
                                    Type type,
                                    boolean ignoreCase,
                                    boolean createOnDemand)
        Retrieves the first Parameter with the specified 'Name', and 'Type' from the 'Owned Parameter' containment reference list.
        Parameters:
        name - The 'Name' of the Parameter to retrieve, or null.
        type - The 'Type' of the Parameter to retrieve, or null.
        ignoreCase - Whether to ignore case in String comparisons.
        createOnDemand - Whether to create a Parameter on demand if not found.
        Returns:
        The first Parameter with the specified 'Name', and 'Type', or null.
        See Also:
        getOwnedParameters()
      • isAbstract

        boolean isAbstract()
        Returns the value of the 'Is Abstract' attribute. The default value is "false". If true, then the behavioral feature does not have an implementation, and one must be supplied by a more specific element. If false, the behavioral feature must have an implementation in the classifier or one must be inherited from a more general element.
        Returns:
        the value of the 'Is Abstract' attribute.
        See Also:
        setIsAbstract(boolean), UMLPackage.getBehavioralFeature_IsAbstract()
      • setIsAbstract

        void setIsAbstract​(boolean value)
        Sets the value of the 'Is Abstract' attribute.
        Parameters:
        value - the new value of the 'Is Abstract' attribute.
        See Also:
        isAbstract()
      • getMethods

        MDWEList<Behavior> getMethods()
        Returns the value of the 'Method' reference list. The list contents are of type Behavior. It is bidirectional and its opposite is 'Specification'. A behavioral description that implements the behavioral feature. There may be at most one behavior for a particular pairing of a classifier (as owner of the behavior) and a behavioral feature (as specification of the behavior).
        Returns:
        the value of the 'Method' reference list.
        See Also:
        UMLPackage.getBehavioralFeature_Method(), Behavior.getSpecification()
      • getMethod

        Behavior getMethod​(String name)
        Retrieves the first Behavior with the specified 'Name' from the 'Method' reference list.
        Parameters:
        name - The 'Name' of the Behavior to retrieve, or null.
        Returns:
        The first Behavior with the specified 'Name', or null.
        See Also:
        getMethods()
      • getMethod

        Behavior getMethod​(String name,
                           boolean ignoreCase,
                           org.eclipse.emf.ecore.EClass eClass)
        Retrieves the first Behavior with the specified 'Name' from the 'Method' reference list.
        Parameters:
        name - The 'Name' of the Behavior to retrieve, or null.
        ignoreCase - Whether to ignore case in String comparisons.
        eClass - The Ecore class of the Behavior to retrieve, or null.
        Returns:
        The first Behavior with the specified 'Name', or null.
        See Also:
        getMethods()
      • getRaisedExceptions

        MDWEList<Type> getRaisedExceptions()
        Returns the value of the 'Raised Exception' reference list. The list contents are of type Type. References the Types representing exceptions that may be raised during an invocation of this feature. The signals that the behavioral feature raises as exceptions.
        Returns:
        the value of the 'Raised Exception' reference list.
        See Also:
        UMLPackage.getBehavioralFeature_RaisedException()
      • getRaisedException

        Type getRaisedException​(String name)
        Retrieves the first Type with the specified 'Name' from the ' Raised Exception' reference list.
        Parameters:
        name - The 'Name' of the Type to retrieve, or null.
        Returns:
        The first Type with the specified 'Name', or null.
        See Also:
        getRaisedExceptions()
      • getRaisedException

        Type getRaisedException​(String name,
                                boolean ignoreCase,
                                org.eclipse.emf.ecore.EClass eClass)
        Retrieves the first Type with the specified 'Name' from the ' Raised Exception' reference list.
        Parameters:
        name - The 'Name' of the Type to retrieve, or null.
        ignoreCase - Whether to ignore case in String comparisons.
        eClass - The Ecore class of the Type to retrieve, or null.
        Returns:
        The first Type with the specified 'Name', or null.
        See Also:
        getRaisedExceptions()
      • getOwnedParameterSet

        ParameterSet getOwnedParameterSet​(String name,
                                          boolean ignoreCase,
                                          boolean createOnDemand)
        Retrieves the first ParameterSet with the specified 'Name' from the ' Owned Parameter Set' containment reference list.
        Parameters:
        name - The 'Name' of the ParameterSet to retrieve, or null.
        ignoreCase - Whether to ignore case in String comparisons.
        createOnDemand - Whether to create a ParameterSet on demand if not found.
        Returns:
        The first ParameterSet with the specified 'Name', or null.
        See Also:
        getOwnedParameterSets()
      • createReturnResult

        Parameter createReturnResult​(String name,
                                     Type type)
        Creates a return result parameter with the specified name and type.