Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbTableDiagComPrimitives"

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.GetDbTableDiagComPrimitives(DbTableTerm);
+
/// Local Declarations
 +
List<DiagCom.DiagService> ListVariable;
 +
/// Flow
 +
ListVariable = DiagDataBrowsingPlus.GetDbTableDiagComPrimitives(DbTableTerm);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 18: Line 21:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie2| dbTable|[[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] | [[Term]] | - | [1..1] |The element addresses the '''DbTable''' (MCDDbTable) which DiagServices shall be returned.}}
+
{{TableRowPropertie2| DbTable|[[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] | [[Term]] | - | [1..1] |The element addresses the '''DbTable''' (MCDDbTable) which DiagServices shall be returned.}}
 
|}
 
|}
  
 
== 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.DbTable> List_DbTable;
 
List<DiagDataBrowsingPlus.DbTable> List_DbTable;

Revision as of 11:05, 24 October 2018

Classification

Name GetDbTableDiagComPrimitives
Short Description Gets the DiagServices of the DbTable
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbTable related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

/// Local Declarations
List<DiagCom.DiagService> ListVariable;
/// Flow
ListVariable = DiagDataBrowsingPlus.GetDbTableDiagComPrimitives(DbTableTerm);

Description

GetDbTableDiagComPrimitives returns a list of otx:DiagService referenced by the current DbTable. The length of the list is zero, if no DiagService is available for this table.

Icons Note.png NOTE — The appropriate MVCI system operation is MCDDbTable::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 otx:DiagService referenced by the current DbTable.

Properties

Name Data Type Class Default Cardinality Description
DbTable DbTable Term - [1..1] The element addresses the DbTable (MCDDbTable) which DiagServices shall be returned.

OTL Examples

/// Local Declarations

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;
List<DiagCom.DiagService> List_DiagService;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbTable = DiagDataBrowsingPlus.GetDbComChannelDbTables(DbComChannel);
List_DiagService = DiagDataBrowsingPlus.GetDbTableDiagComPrimitives(List_DbTable[0]);

See also

GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbTables
GetDbComChannelDbSubComponents
GetDbSubComponentDbTables