Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbDiagServices"

From emotive
Jump to navigation Jump to search
Line 5: Line 5:
 
== OTL Syntax ==
 
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
ListTerm = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannelTerm);
+
/// Local Declarations
 +
List<DiagDataBrowsingPlus.DbDiagService> ListVariable;
 +
/// Flow
 +
ListVariable = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannelTerm);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 23: Line 26:
 
== OTL Examples ==
 
== OTL Examples ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 +
/// Local Declarations
 +
 
DiagDataBrowsingPlus.DbComChannel DbComChannel;
 
DiagDataBrowsingPlus.DbComChannel DbComChannel;
 
List<DiagDataBrowsingPlus.DbDiagService> List_DbDiagService;
 
List<DiagDataBrowsingPlus.DbDiagService> List_DbDiagService;

Revision as of 03:41, 24 October 2018

DiagDataBrowsingPlus

Classification

Name GetDbComChannelDbDiagServices
Short Description Gets the DbDiagService elements of the DbComChannel
Class Term
Extension OTX DiagDataBrowsingPlus Extension
Group DbDiagService related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

/// Local Declarations
List<DiagDataBrowsingPlus.DbDiagService> ListVariable;
/// Flow
ListVariable = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannelTerm);

Description

GetDbComChannelDbDiagServices returns a list of DbDiagService objects which represents all MCDDbDiagComPrimitive for the given DbComChannel. If the DbComChannel has no associated MCDDbDiagComPrimitive elements, an empty list will be returned.

Icons Note.png NOTE — The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbDiagComPrimitives

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 returns a list of DbDiagService objects.

Properties

Name Data Type Class Default Cardinality Description
dbComChannel DbComChannel Term - [1..1] This element addresses the DbComChannel which DbDiagService elements shall be returned.

OTL Examples

/// Local Declarations

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbDiagService> List_DbDiagService;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AllEmissRelatUDSSyste");
List_DbDiagService = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannel);

See also

GetComChannelDbComChannel
GetDbComChannel