Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbDiagServices"
Jump to navigation
Jump to search
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{DISPLAYTITLE:OTX '''GetDbComChannelDbDiagServices'''}}[[DiagDataBrowsingPlus]] | + | {{DISPLAYTITLE:OTX '''GetDbComChannelDbDiagServices'''}}[[Category:DiagDataBrowsingPlus]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbComChannelDbDiagServices | Gets the [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] elements of the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus Extension]] | [[Extensions.DiagDataBrowsingPlus|DbDiagService related terms]] | NONE | - }} | + | {{ClassificationActivity | GetDbComChannelDbDiagServices | Gets the [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] elements of the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus Extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|DbDiagService 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;"> | ||
− | ListTerm | + | ListTerm DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannelTerm dbComChannel); |
</syntaxhighlight> | </syntaxhighlight> | ||
== Description == | == Description == | ||
− | '''GetDbComChannelDbDiagServices''' returns a list of [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] objects which represents all MCDDbDiagComPrimitive for the given [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]]. If the DbComChannel has no associated MCDDbDiagComPrimitive elements, an empty list will be returned. | + | '''GetDbComChannelDbDiagServices''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] objects which represents all MCDDbDiagComPrimitive for the given [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]]. If the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] has no associated MCDDbDiagComPrimitive elements, an empty list will be returned. |
− | {{Note| | + | {{Note|The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbDiagComPrimitives}} |
− | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | returns a list of [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] objects}} | + | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | returns a list of [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] objects.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie2| | + | {{TableRowPropertie2| DbComChannel | [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | - | [1..1] | This element addresses the '''DbComChannel''' which [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] elements 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.DbDiagService> List_DbDiagService; | List<DiagDataBrowsingPlus.DbDiagService> List_DbDiagService; |
Latest revision as of 05:49, 25 September 2019
Contents
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
ListTerm DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannelTerm dbComChannel);
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.
![]()
The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbDiagComPrimitives
Return Value
The Term returns the value, see table below.
![]()
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);