Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals"

From emotive
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{DISPLAYTITLE:OTX '''GetDbParameterValidInternalIntervals'''}}[[Category:DiagDataBrowsingPlus]]
 
{{DISPLAYTITLE:OTX '''GetDbParameterValidInternalIntervals'''}}[[Category:DiagDataBrowsingPlus]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | GetDbParameterValidInternalIntervals| Gets the valid internal intervals of the [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|Interval related terms]] | NONE | - }}
+
{{ClassificationActivity | GetDbParameterValidInternalIntervals| Gets the valid internal intervals of the [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|Interval 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 = DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals(DbParameterTerm);
+
ListTerm DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals(DbParameterTerm dbParameter);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 11: Line 11:
 
'''GetDbParameterValidInternalIntervals''' returns the [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of valid internal [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] objects defined by the intersection of COMPUSCALE intervals and valid ranges in ODX. The list might be empty if no internal interval exists.
 
'''GetDbParameterValidInternalIntervals''' returns the [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of valid internal [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] objects defined by the intersection of COMPUSCALE intervals and valid ranges in ODX. The list might be empty if no internal interval exists.
  
{{Note|NOTE — The appropriate MVCI system operation is MCDDbParameter::getValidInternalIntervals}}
+
{{Note|The appropriate MVCI system operation is MCDDbParameter::getValidInternalIntervals}}
  
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of valid internal [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] objects.}}
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of valid internal [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] objects.}}
Line 18: Line 18:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie2| dbParameter|[[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | [[Term]] | - | [1..1] |The element addresses the '''DbParameter''' (MCDDbParameter) which valid internal intervals shall be returned.}}
+
{{TableRowPropertie2| DbParameter|[[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | [[Term]] | - | [1..1] |The element addresses the '''DbParameter''' (MCDDbParameter) which valid internal intervals 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
 +
 
DiagCom.Parameter Parameter;
 
DiagCom.Parameter Parameter;
 
DiagDataBrowsingPlus.DbParameter DbParameter;
 
DiagDataBrowsingPlus.DbParameter DbParameter;

Latest revision as of 10:42, 2 November 2018

Classification

Name GetDbParameterValidInternalIntervals
Short Description Gets the valid internal intervals of the DbParameter
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group Interval related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

ListTerm DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals(DbParameterTerm dbParameter);

Description

GetDbParameterValidInternalIntervals returns the list of valid internal Interval objects defined by the intersection of COMPUSCALE intervals and valid ranges in ODX. The list might be empty if no internal interval exists.

Icons Note.png The appropriate MVCI system operation is MCDDbParameter::getValidInternalIntervals

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 valid internal Interval objects.

Properties

Name Data Type Class Default Cardinality Description
DbParameter DbParameter Term - [1..1] The element addresses the DbParameter (MCDDbParameter) which valid internal intervals shall be returned.

OTL Examples

/// Local Declarations

DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.Interval> List_Interval;

/// Flow

Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("AIRBAG", "", false), "DiagnServi_ClearDiagnInforSingle")), {"Dtc"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_Interval = DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals(DbParameter);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterDbParameter