Difference between revisions of "Extensions.DiagDataBrowsing.GetEcuVariantList"
Jump to navigation
Jump to search
(Created page with "Category:DiagDataBrowsing == Classification == {{ClassificationActivity | GetEcuVariantList | Return list of names of all ECU variants of a communication channel | [[Term]...") |
|||
Line 3: | Line 3: | ||
{{ClassificationActivity | GetEcuVariantList | Return list of names of all ECU variants of a communication channel | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | [[TypeMismatchException]] | - }} | {{ClassificationActivity | GetEcuVariantList | Return list of names of all ECU variants of a communication channel | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | [[TypeMismatchException]] | - }} | ||
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | ListTerm = DiagDataBrowsing.GetEcuVariantList(ComChannelTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 19: | Line 19: | ||
|} | |} | ||
− | == Examples == | + | == OTL Examples == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | List<String> | + | List<String> List1; |
+ | DiagCom.ComChannel ComChannel1; | ||
+ | |||
+ | ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false); | ||
+ | List1 = DiagDataBrowsing.GetEcuVariantList(ComChannel1); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 08:22, 6 February 2015
Contents
Classification
Name | GetEcuVariantList |
Short Description | Return list of names of all ECU variants of a communication channel |
Class | Term |
Extension | OTX DiagDataBrowsing extension |
Group | DiagDataBrowsing terms |
Exceptions | TypeMismatchException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm = DiagDataBrowsing.GetEcuVariantList(ComChannelTerm);
Description
GetEcuVariantList returns a list of strings representing the names of all ECU variants for a particular communication channel.
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 | Return list of names of all ECU variants of a communication channel |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ComChannel | ComChannel | Term | - | [1] | The communication channel, which provides the data. |
OTL Examples
List<String> List1;
DiagCom.ComChannel ComChannel1;
ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
List1 = DiagDataBrowsing.GetEcuVariantList(ComChannel1);
See also
GetComChannelList
GetDiagServiceList
GetRequestParameterList
GetResponseParameterList
GetAllowedParameterValueList