All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencrx.kernel.model1.cci2.Parameter Maven / Gradle / Ivy

The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.cci2;

/**
 * Class {@code Parameter}
 *

* A parameter provides a means of communication with operations and other BehavioralFeatures. A parameter passes or communicates values of its defined type. */ @javax.annotation.Generated( value = "org.openmdx.application.mof.mapping.java.InstanceMapper", date = "2023-10-28T12:15:35.361653880Z", comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY" ) public interface Parameter extends org.opencrx.kernel.model1.cci2.TypedElement{ // ---------------------------------------------------------------------------- // Instance/AttributeGet1_1 // ---------------------------------------------------------------------------- /** * Retrieves the value for the attribute {@code direction}. *

* This attribute specifies the purpose of the parameter; to input a value, to output a value, both purposes, or to provide an operation return value. * @return The non-null value for attribute {@code direction}. */ public short getDirection( ); // ---------------------------------------------------------------------------- // Instance/AttributeSet1_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute {@code direction}. *

* This attribute specifies the purpose of the parameter; to input a value, to output a value, both purposes, or to provide an operation return value. * @param direction The non-{@code null} new value for attribute {@code direction}. */ public void setDirection( short direction ); // ---------------------------------------------------------------------------- // Instance/AttributeGet1_1 // ---------------------------------------------------------------------------- /** * Retrieves the value for the attribute {@code multiplicity}. *

* Multiplicity defines cardinality constraints on the set of instances or values that a Parameter can hold. Multiplicity defines a lower and upper bound on the set, although the upper bound can be specified as Unbounded. * @return The non-null value for attribute {@code multiplicity}. */ public short getMultiplicity( ); // ---------------------------------------------------------------------------- // Instance/AttributeSet1_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute {@code multiplicity}. *

* Multiplicity defines cardinality constraints on the set of instances or values that a Parameter can hold. Multiplicity defines a lower and upper bound on the set, although the upper bound can be specified as Unbounded. * @param multiplicity The non-{@code null} new value for attribute {@code multiplicity}. */ public void setMultiplicity( short multiplicity ); // ---------------------------------------------------------------------------- // Instance/AttributeGet0_1 // ---------------------------------------------------------------------------- /** * Retrieves the possibly null value for the optional attribute {@code upperBound}. * @return The possibly null value for attribute {@code upperBound}. */ public java.lang.Integer getUpperBound( ); // ---------------------------------------------------------------------------- // Instance/AttributeSet0_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute {@code upperBound}. * @param upperBound The possibly null new value for attribute {@code upperBound}. */ public void setUpperBound( java.lang.Integer upperBound ); // ---------------------------------------------------------------------------- // Instance/End // ---------------------------------------------------------------------------- }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy