Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbMatchingParameterExpectedValueAsString"

From emotive
Jump to navigation Jump to search
Line 5: Line 5:
 
== OTL Syntax ==
 
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
StringTerm = DiagDataBrowsingPlus.GetDbMatchingParameterExpectedValueAsString(DbMatchingParameterTerm);
+
/// Local Declarations
 +
String StringVariable;
 +
/// Flow
 +
StringVariable = DiagDataBrowsingPlus.GetDbMatchingParameterExpectedValueAsString(DbMatchingParameterTerm);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 23: Line 26:
 
== OTL Examples ==
 
== OTL Examples ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 +
/// Local Declarations
 +
 
String MyString;
 
String MyString;
 
DiagDataBrowsingPlus.DbComChannel DbComChannel;
 
DiagDataBrowsingPlus.DbComChannel DbComChannel;

Revision as of 04:42, 24 October 2018

Classification

Name GetDbMatchingParameterExpectedValueAsString
Short Description Gets the expected value of the DbMatchingParameter
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbMatchingParameter related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

/// Local Declarations
String StringVariable;
/// Flow
StringVariable = DiagDataBrowsingPlus.GetDbMatchingParameterExpectedValueAsString(DbMatchingParameterTerm);

Description

GetDbMatchingParameterExpectedValueAsString returns the expected value of the matching parameter as a string.

Icons Note.png NOTE — The appropriate MVCI system operation is MCDDbMatchingParameter::getExpectedValue::getValueAsString

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String Returns the expected value of the matching parameter.

Properties

Name Data Type Class Default Cardinality Description
matchingParameter DbMatchingParameter Term - [1..1] The element addresses the DbMatchingParameter which expected value shall be returned.

OTL Examples

/// Local Declarations

String MyString;
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<List<DiagDataBrowsingPlus.DbMatchingParameter>> List_List_DbMatchingParameter;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AerodContrUnitUDS");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_List_DbMatchingParameter = DiagDataBrowsingPlus.GetDbSubComponentDbMatchingParameters(List_DbSubComponent[0]);
MyString = DiagDataBrowsingPlus.GetDbMatchingParameterExpectedValueAsString(List_List_DbMatchingParameter[0][0]);

See also

GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbSubComponents
GetDbSubComponentDbMatchingParameters