Difference between revisions of "Extensions.DiagCom.GetDiagServiceListBySemantic"

From emotive
Jump to navigation Jump to search
Line 10: Line 10:
 
== Description ==
 
== Description ==
 
The '''GetDiagServiceListBySemantic''' term is a complete list of diagnostic services with the same  [[Semantic Attribute]] back.
 
The '''GetDiagServiceListBySemantic''' term is a complete list of diagnostic services with the same  [[Semantic Attribute]] back.
 +
 +
{{TermReturnValue| [[List]] | List of Type DiagService.}}
  
 
== Properties ==
 
== Properties ==
Line 16: Line 18:
 
{{TableRowPropertie1| ComChannel | [[ComChannel]] | [[Term]] | - | [1] | Communication Channel.}}
 
{{TableRowPropertie1| ComChannel | [[ComChannel]] | [[Term]] | - | [1] | Communication Channel.}}
 
{{TableRowPropertie2| Semantic | [[String]] | [[Term]] | - | [1] | Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION").}}
 
{{TableRowPropertie2| Semantic | [[String]] | [[Term]] | - | [1] | Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION").}}
{{TableRowPropertie1| Result | [[List]] | [[Return]] | - | - | List of Type DiagService.}}
 
 
|}
 
|}
  

Revision as of 03:49, 17 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.

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 List of Type DiagService.

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").

Examples

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

See also

GetDiagServiceListBySemantic
GetDiagServiceFromResult
GetDiagServiceFromException
GetDiagServiceName
ExecuteDiagService
GetComChannel