Difference between revisions of "Extensions.DiagCom.GetParameterAsList"
Jump to navigation
Jump to search
(Created page with "Category:DiagCom == Classification == {{ClassificationActivity | GetParameterAsList | List of parameters within a parameter | Term | OTX DiagCom extension...") |
|||
Line 5: | Line 5: | ||
== Pseudo-Code Syntax == | == Pseudo-Code Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | GetParameterAsList(ParameterContainer container | + | List<Paramter> GetParameterAsList(ParameterContainer container); |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 27: | Line 27: | ||
[[GetParameterName]] <br/> | [[GetParameterName]] <br/> | ||
[[GetParameterSemantic]] <br/> | [[GetParameterSemantic]] <br/> | ||
− | [[GetParameterByPath | + | [[GetParameterByPath]] |
− |
Revision as of 02:58, 18 July 2014
Contents
Classification
Name | GetParameterAsList |
Short Description | List of parameters within a parameter |
Class | Term |
Extension | OTX DiagCom extension |
Group | Parameter related terms |
Exceptions | TypeMismatchException |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
List<Paramter> GetParameterAsList(ParameterContainer container);
Description
The GetParameterAsList term is a list of parameters within a parameter back. The prerequisite is that the parameter consists of a set of individual parameters of the same type, such as in an array.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
List | List of parameter (Type Parameter) |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ParameterContainer | ParameterContainer | Term | - | [1] | The container of the parameter. |
Examples
List<Parameter> parameterList = GetParameterAsList(container);