Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbTableSemantic"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
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;"> | ||
− | + | StringTerm DiagDataBrowsingPlus.GetDbTableSemantic(DbTableTerm dbTable); | |
− | |||
− | |||
− | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 14: | Line 11: | ||
'''GetDbTableSemantic''' returns the value of the semantic attribute attached to the corresponding [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]]. The semantic gives additional information on the tables nature, e.g. SECURITY or IDENTIFICATION. If no semantic can be obtained from ODX an empty string will be returned. | '''GetDbTableSemantic''' returns the value of the semantic attribute attached to the corresponding [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]]. The semantic gives additional information on the tables nature, e.g. SECURITY or IDENTIFICATION. If no semantic can be obtained from ODX an empty string will be returned. | ||
− | {{Note| | + | {{Note|The appropriate MVCI system operation is MCDDbTable::getSemantic}} |
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]]| Returns the value of the semantic attribute attached to the corresponding [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]].}} | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]]| Returns the value of the semantic attribute attached to the corresponding [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]].}} |
Latest revision as of 08:42, 2 November 2018
Contents
Classification
Name | GetDbTableSemantic |
Short Description | Gets the semantic of the DbTable |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbTable related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm DiagDataBrowsingPlus.GetDbTableSemantic(DbTableTerm dbTable);
Description
GetDbTableSemantic 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. If no semantic can be obtained from ODX an empty string will be returned.
![]()
The appropriate MVCI system operation is MCDDbTable::getSemantic
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | Returns the value of the semantic attribute attached to the corresponding DbTable. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DbTable | DbTable | Term | - | [1..1] | The element addresses the DbTable (MCDDbTable) which semantic shall be returned. |
OTL Examples
/// Local Declarations
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;
String MyString;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_DbTable = DiagDataBrowsingPlus.GetDbSubComponentDbTables(List_DbSubComponent[0]);
MyString = DiagDataBrowsingPlus.GetDbTableSemantic(List_DbTable[0]);
See also
GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbTables
GetDbSubComponentDbTables