Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbTableSemantic"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetDbTableSemantic'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetDbTableSemantic'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbTableSemantic| Gets the semantic of the [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbTable related terms]] | NONE | - }} | + | {{ClassificationActivity | GetDbTableSemantic| Gets the semantic of the [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|DbTable related terms]] | NONE | - }} |
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | StringTerm | + | StringTerm DiagDataBrowsingPlus.GetDbTableSemantic(DbTableTerm dbTable); |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 11: | 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]].}} | ||
Line 18: | Line 18: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie2| | + | {{TableRowPropertie2| DbTable|[[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] | [[Term]] | - | [1..1] |The element addresses the '''DbTable''' (MCDDbTable) which semantic 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.DbSubComponent> List_DbSubComponent; | List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent; | ||
Line 39: | Line 41: | ||
[[Extensions.DiagDataBrowsingPlus.GetDbComChannel|GetDbComChannel]] <br/> | [[Extensions.DiagDataBrowsingPlus.GetDbComChannel|GetDbComChannel]] <br/> | ||
[[Extensions.DiagDataBrowsingPlus.GetComChannelDbComChannel|GetComChannelDbComChannel]] <br/> | [[Extensions.DiagDataBrowsingPlus.GetComChannelDbComChannel|GetComChannelDbComChannel]] <br/> | ||
− | [[Extensions.DiagDataBrowsingPlus. | + | [[Extensions.DiagDataBrowsingPlus.GetDbComChannelDbTables|GetDbComChannelDbTables]] <br/> |
[[Extensions.DiagDataBrowsingPlus.GetDbSubComponentDbTables|GetDbSubComponentDbTables]] | [[Extensions.DiagDataBrowsingPlus.GetDbSubComponentDbTables|GetDbSubComponentDbTables]] |
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