Difference between revisions of "Extensions.DiagCom.GetDiagServiceListBySemantic"

From emotive
Jump to navigation Jump to search
(Created page with "Category:DiagCom == Classification == {{ClassificationActivity | GetDiagServiceListBySemantic | List of Diagnostic Services with the same semantic attribute | Term | [...")
 
Line 26: Line 26:
  
 
== See also ==
 
== See also ==
[[GetDiagServiceBySemantic]] <br/>
+
[[GetDiagServiceListBySemantic]] <br/>
[[GetDiagServiceNameFromResult]] <br/>
+
[[GetDiagServiceFromResult]] <br/>
 
[[GetDiagServiceFromException]] <br/>
 
[[GetDiagServiceFromException]] <br/>
 
[[GetDiagServiceName]] <br/>
 
[[GetDiagServiceName]] <br/>
 
[[ExecuteDiagService]] <br/>
 
[[ExecuteDiagService]] <br/>
 
[[GetComChannel]]
 
[[GetComChannel]]

Revision as of 09:45, 16 July 2014

Classification

Name GetDiagServiceListBySemantic
Short Description List of Diagnostic Services with the same semantic attribute
Class Term
Extension OTX DiagCom extension
Group DiagService related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

Pseudo-Code Syntax

GetDiagServiceListBySemantic(ComChannel myComChannel, String semantic, List<DiagService> resultList);

Description

The GetDiagServiceListBySemantic term is a complete list of diagnostic services with the same Semantic Attribute back.

Properties

Name Data Type Class Default Cardinality Description
ComChannel ComChannel Term - [1] Communication Channel.
Semantic String Term - [1] Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION").
Result List Return - - List of Type DiagService.

Examples

ComChannel myComCannel = GetComChannel("LL_AirbaUDS", "", false);
List<DiagService> result = GetDiagServiceListBySemantic(myComCannel, "DEFAULT_FAULTREAD");

See also

GetDiagServiceListBySemantic
GetDiagServiceFromResult
GetDiagServiceFromException
GetDiagServiceName
ExecuteDiagService
GetComChannel