Difference between revisions of "Extensions.DiagCom.IsVariant"
Jump to navigation
Jump to search
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;"> | ||
− | IsVariant(ComChannel myComChannel, String ecuVariantName); | + | Boolean IsVariant(ComChannel myComChannel, String ecuVariantName); |
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 02:20, 18 July 2014
Contents
Classification
Name | IsVariant |
Short Description | Tests the name of a control device variant for a communication channel |
Class | Term |
Extension | OTX DiagCom extension |
Group | ComChanel related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
Boolean IsVariant(ComChannel myComChannel, String ecuVariantName);
Description
The IsVariant term tests whether the name of the specified control units version matches the version of the given communication channel, see Variant Identification.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Booelan | Return true if the version matches, false otherwise. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ComChannel | ComChannel | Term | - | [1] | Communication channel. |
EcuVariant | String | Term | - | [1] | Name of the ECU variant. |
Examples
ComChannel myComCannel = GetComChannel("LL_AirbaUDS", "", false);
Boolean result = IsVariant(myComCannel, "ecuVariantName");
See also
GetComChannelIdentifierFromResponse
GetComChannel
GetComChannelEcuVariantName