Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbMatchingParameterDbResponseParameter"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetDbMatchingParameterDbResponseParameter'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetDbMatchingParameterDbResponseParameter'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbMatchingParameterDbResponseParameter| Gets the response parameter of the [[Extensions.DiagDataBrowsingPlus.DbMatchingParameter|DbMatchingParameter]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbResponse related terms]] | [[Extensions.DiagDataBrowsingPlus.InvalidTypeException|InvalidTypeException]] | - }} | + | {{ClassificationActivity | GetDbMatchingParameterDbResponseParameter| Gets the response parameter of the [[Extensions.DiagDataBrowsingPlus.DbMatchingParameter|DbMatchingParameter]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|DbResponse related terms]] | [[Extensions.DiagDataBrowsingPlus.InvalidTypeException|InvalidTypeException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | DbParameterTerm | + | DbParameterTerm DiagDataBrowsingPlus.GetDbMatchingParameterDbResponseParameter(DbMatchingParameterTerm matchingParameter); |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 13: | Line 13: | ||
If the corresponding response parameter is not available, the [[Extensions.DiagDataBrowsingPlus.InvalidTypeException|InvalidTypeException]] will be thrown. | If the corresponding response parameter is not available, the [[Extensions.DiagDataBrowsingPlus.InvalidTypeException|InvalidTypeException]] will be thrown. | ||
− | {{Note| | + | {{Note|The appropriate MVCI system operation is MCDDbMatchingParameter::getDbResponseParameter}} |
{{TermReturnValue| [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | Returns the corresponding [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] (MCDDbResponseParameter) responsible for the matching parameter.}} | {{TermReturnValue| [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | Returns the corresponding [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] (MCDDbResponseParameter) responsible for the matching parameter.}} | ||
Line 20: | Line 20: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie2| | + | {{TableRowPropertie2| MatchingParameter | [[Extensions.DiagDataBrowsingPlus.DbMatchingParameter|DbMatchingParameter]] | [[Term]] | - | [1..1] |The element addresses the [[Extensions.DiagDataBrowsingPlus.DbMatchingParameter|DbMatchingParameter]] which response parameter shall be returned.}} |
|} | |} | ||
== OTL Examples == | == OTL Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
+ | /// Local Declarations | ||
+ | |||
DiagDataBrowsingPlus.DbComChannel DbComChannel; | DiagDataBrowsingPlus.DbComChannel DbComChannel; | ||
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent; | List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent; |
Latest revision as of 08:51, 2 November 2018
Contents
Classification
Name | GetDbMatchingParameterDbResponseParameter |
Short Description | Gets the response parameter of the DbMatchingParameter |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbResponse related terms |
Exceptions | InvalidTypeException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
DbParameterTerm DiagDataBrowsingPlus.GetDbMatchingParameterDbResponseParameter(DbMatchingParameterTerm matchingParameter);
Description
GetDbMatchingParameterDbResponseParameter returns the corresponding DbParameter (MCDDbResponseParameter) responsible for the matching parameter.
If the corresponding response parameter is not available, the InvalidTypeException will be thrown.
![]()
The appropriate MVCI system operation is MCDDbMatchingParameter::getDbResponseParameter
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
DbParameter | Returns the corresponding DbParameter (MCDDbResponseParameter) responsible for the matching parameter. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
MatchingParameter | DbMatchingParameter | Term | - | [1..1] | The element addresses the DbMatchingParameter which response parameter shall be returned. |
OTL Examples
/// Local Declarations
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<List<DiagDataBrowsingPlus.DbMatchingParameter>> List_List_DbMatchingParameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AerodContrUnitUDS");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_List_DbMatchingParameter = DiagDataBrowsingPlus.GetDbSubComponentDbMatchingParameters(List_DbSubComponent[0]);
DbParameter = DiagDataBrowsingPlus.GetDbMatchingParameterDbResponseParameter(List_List_DbMatchingParameter[0][0]);
See also
GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbSubComponents
GetDbSubComponentDbMatchingParameters