Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
How to check model parameter type on J-Link (String, int, etc.)
A bit late, but this may help.
Parameter proePar
ParamValueType parametertype = proePar.GetValue().Getdiscr();
if (parametertype.equals(ParamValueType.PARAM_STRING))
if (parametertype.equals(ParamValueType.PARAM_INTEGER))
...