int j = 0;
while (st.hasMoreTokens())
{
String type = st.nextToken();
Class<?> clazz = LocalUtil.classForName(type.trim());
ParameterProperty parentProperty = new ParameterProperty(new MethodDeclaration(method), paramNo);
Property child = parentProperty.createChild(j);
child = converterManager.checkOverride(child);
Property replacement = new OverrideProperty(clazz);
converterManager.setOverrideProperty(child, replacement);
j++;
}