Difference between revisions of "Extensions.DiagDataBrowsing.GetDiagServiceList"

From emotive
Jump to navigation Jump to search
(Created page with "Category:DiagDataBrowsing == Classification == {{ClassificationActivity | GetDiagServiceList | Return list of available diagnostic services of a communication channel | ...")
 
Line 3: Line 3:
 
{{ClassificationActivity | GetDiagServiceList | Return list of available diagnostic services of a communication channel | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }}
 
{{ClassificationActivity | GetDiagServiceList | Return list of available diagnostic services of a communication channel | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }}
  
== Pseudo-Code Syntax ==
+
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
List<String> GetDiagServiceList(ComChannel comChannel);
+
ListTerm = DiagDataBrowsing.GetDiagServiceList(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> listDiagService = GetDiagServiceList(myComChannel);
+
List<String> List1;
 +
DiagCom.ComChannel ComChannel1;
 +
 
 +
ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
 +
List1 = DiagDataBrowsing.GetDiagServiceList(ComChannel1);
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Revision as of 08:24, 6 February 2015

Classification

Name GetDiagServiceList
Short Description Return list of available diagnostic services of a communication channel
Class Term
Extension OTX DiagDataBrowsing extension
Group DiagDataBrowsing terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

ListTerm = DiagDataBrowsing.GetDiagServiceList(ComChannelTerm);

Description

GetDiagServiceList returns a list of strings containing the names of all available diagnostic services of a particular communication channel.

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
List Return list of available diagnostic services of a communication channel

Properties

Name Data Type Class Default Cardinality Description
ComChannel ComChannel Term - [1] The communication channel whose diagnostic services are listed.

OTL Examples

List<String> List1;
DiagCom.ComChannel ComChannel1;

ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
List1 = DiagDataBrowsing.GetDiagServiceList(ComChannel1);

See also

GetEcuVariantList
GetComChannelList
GetRequestParameterList
GetResponseParameterList
GetAllowedParameterValueList