else if (isPrimitive())
{
if (isTag("char")) { //$NON-NLS-1$
if (data.length() != 1)
{
throw new IntrospectionException(Messages.getString("beans.43", //$NON-NLS-1$
data));
}
addArgument(new Argument(char.class, Character.valueOf(data.charAt(0))), 0);
}
else