Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbSubComponents"

From emotive
Jump to navigation Jump to search
 
(3 intermediate revisions 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;">
ListTerm = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannelTerm);
+
ListTerm DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannelTerm dbComChannel);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 11: Line 11:
 
'''GetDbComChannelDbSubComponents''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of all [[Extensions.DiagDataBrowsingPlus.DbSubComponent|DbSubComponent]] (MCDDbSubComponent) referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]]. The list can be empty.
 
'''GetDbComChannelDbSubComponents''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of all [[Extensions.DiagDataBrowsingPlus.DbSubComponent|DbSubComponent]] (MCDDbSubComponent) referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]]. The list can be empty.
  
{{Note|NOTE — The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbSubComponents}}
+
{{Note|The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbSubComponents}}
  
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of all [[Extensions.DiagDataBrowsingPlus.DbSubComponent|DbSubComponent]] (MCDDbSubComponent) referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]].}}
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of all [[Extensions.DiagDataBrowsingPlus.DbSubComponent|DbSubComponent]] (MCDDbSubComponent) referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]].}}
Line 18: Line 18:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie2| dbComChannel| [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | - | [1..1] |The element addresses the ComChannel which sub components shall be returned.}}
+
{{TableRowPropertie2| DbComChannel| [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | - | [1..1] |The element addresses the '''DbComChannel''' which sub components 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;

Latest revision as of 10:47, 2 November 2018

Classification

Name GetDbComChannelDbSubComponents
Short Description Gets the sub components of the DbComChannel
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbSubComponent related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

ListTerm DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannelTerm dbComChannel);

Description

GetDbComChannelDbSubComponents returns a list of all DbSubComponent (MCDDbSubComponent) referenced by the DbComChannel. The list can be empty.

Icons Note.png The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbSubComponents

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 all DbSubComponent (MCDDbSubComponent) referenced by the DbComChannel.

Properties

Name Data Type Class Default Cardinality Description
DbComChannel DbComChannel Term - [1..1] The element addresses the DbComChannel which sub components shall be returned.

OTL Examples

/// Local Declarations

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);

See also

GetDbComChannel
GetComChannelDbComChannel