org.omg.model1.cci2.Parameter Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.omg.model1.cci2;
/**
* Class Parameter
*
* A parameter provides a means of communication with operations and other BehavioralFeatures. A parameter passes or communicates values of its defined type.
*/
public interface Parameter
extends org.omg.model1.cci2.TypedElement{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute 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 direction
.
*/
public java.lang.String getDirection(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute 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-null new value for attribute direction
.
*/
public void setDirection(
java.lang.String direction
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute 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 multiplicity
.
*/
public java.lang.String getMultiplicity(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute 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-null new value for attribute multiplicity
.
*/
public void setMultiplicity(
java.lang.String multiplicity
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}