Difference between revisions of "Extensions.DiagDataBrowsing.GetAllowedParameterValueList"
Jump to navigation
Jump to search
(Created page with "Category:DiagDataBrowsing == Classification == {{ClassificationActivity | GetAllowedParameterValueList | Return list of all permissible values of a parameter | Ter...") |
|||
| Line 3: | Line 3: | ||
{{ClassificationActivity | GetAllowedParameterValueList | Return list of all permissible values of a parameter | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }} | {{ClassificationActivity | GetAllowedParameterValueList | Return list of all permissible values of a parameter | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }} | ||
| − | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
| − | + | ListTerm = GetAllowedParameterValueList(ParameterTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
| Line 19: | Line 19: | ||
|} | |} | ||
| − | == Examples == | + | == OTL Examples == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
| − | List<String> | + | List<String> List1; |
| + | DiagCom.ComChannel ComChannel1; | ||
| + | DiagCom.DiagService DiagService1; | ||
| + | DiagCom.Parameter Parameter1; | ||
| + | DiagCom.Request Request1; | ||
| + | |||
| + | ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false); | ||
| + | DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu"); | ||
| + | List1 = DiagDataBrowsing.GetRequestParameterList(DiagService1); | ||
| + | Request1 = DiagCom.GetRequest(DiagService1); | ||
| + | Parameter1 = DiagCom.GetParameterByPath(Request1, {List1[0]}); | ||
| + | List1 = DiagDataBrowsing.GetAllowedParameterValueList(Parameter1); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 08:35, 6 February 2015
Contents
Classification
| Name | GetAllowedParameterValueList |
| Short Description | Return list of all permissible values of a parameter |
| Class | Term |
| Extension | OTX DiagDataBrowsing extension |
| Group | DiagDataBrowsing terms |
| Exceptions | - |
| Checker Rules | - |
| Standard Compliant | Yes |
OTL Syntax
ListTerm = GetAllowedParameterValueList(ParameterTerm);Description
GetAllowedParameterValueList returns a list of strings containing all allowable values of a parameter.
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 | Return list of all permissible values of a parameter |
Properties
| Name | Data Type | Class | Default | Cardinality | Description |
| Parameter | Parameter | Term | - | [1] | The name of the request or response parameter |
OTL Examples
List<String> List1;
DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
DiagCom.Parameter Parameter1;
DiagCom.Request Request1;
ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
List1 = DiagDataBrowsing.GetRequestParameterList(DiagService1);
Request1 = DiagCom.GetRequest(DiagService1);
Parameter1 = DiagCom.GetParameterByPath(Request1, {List1[0]});
List1 = DiagDataBrowsing.GetAllowedParameterValueList(Parameter1);See also
GetEcuVariantList
GetComChannelList
GetDiagServiceList
GetRequestParameterList
GetResponseParameterList