OTX Reference  
OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbTableSemantic Class Reference

Gets the value of the semantic attribute attached to the corresponding DbTable. More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbTableSemantic:
Inheritance graph

Public Attributes

DbTableTerm dbTable
 Cardinality [1]
A DbTable represents the MCDDbTable object of a MVCI system. Such a table is composed of a non-empty set of TABLE-ROWs. Each TABLE-ROW of a TABLE is mapped to a DbParameter contained in a DbTable object. If a containing DbParameter with datatype eTABLE_ROW references a simple DOP in ODX, the resulting DbParameters collection delivered by term GetDbParameters contains exactly one DbParameter. The DbParameter has the parameter type eGENERATED, the datatype of the referenced simple DOP, and the ShortName #RtGen_Param_. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Cardinality [0..1]
The MetaData type allows tools to store additional, mainly tool-specific data. More...
 

Detailed Description

Gets the value of the semantic attribute attached to the corresponding DbTable.

The GetDbTableSemantic term returns the value of the semantic attribute attached to the corresponding DbTable. The semantic gives additional information on the tables nature, e.g. SECURITY or IDENTIFICATION.

Note: The appropriate MVCI system operation is MCDDbTable::getSemantic.

Syntax
StringTerm = DiagDataBrowsingPlus.GetDbTableSemantic(DbTableTerm dbTable);
Examples
// Local Declarations
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;
String MyString;
// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel("AIRBAG");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_DbTable = DiagDataBrowsingPlus.GetDbSubComponentDbTables(List_DbSubComponent[0]);
MyString = DiagDataBrowsingPlus.GetDbTableSemantic(List_DbTable[0]);

Member Data Documentation

◆ dbTable

DbTableTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbTableSemantic.dbTable

Cardinality [1]
A DbTable represents the MCDDbTable object of a MVCI system. Such a table is composed of a non-empty set of TABLE-ROWs. Each TABLE-ROW of a TABLE is mapped to a DbParameter contained in a DbTable object. If a containing DbParameter with datatype eTABLE_ROW references a simple DOP in ODX, the resulting DbParameters collection delivered by term GetDbParameters contains exactly one DbParameter. The DbParameter has the parameter type eGENERATED, the datatype of the referenced simple DOP, and the ShortName #RtGen_Param_.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbTableSemantic.dbTable
DbTableTerm dbTable
Cardinality [1] A DbTable represents the MCDDbTable object of a MVCI system. Such a table is composed...
Definition: DiagDataBrowsingPlus.cs:10205