{
// FORGE-1781: Using String if parameter type is not defined
valueType = (Class<T>) String.class;
}
WithAttributes withAttributes = injectionPoint.getAnnotated().getAnnotation(WithAttributes.class);
String paramName = (withAttributes == null || withAttributes.name().trim().isEmpty()) ? name
: withAttributes.name();
char shortName = (withAttributes == null) ? InputComponents.DEFAULT_SHORT_NAME : withAttributes.shortName();
UIInputMany<T> input = createInputMany(paramName, shortName, valueType);
preconfigureInput(input, withAttributes);
for (InputComponentInjectionEnricher enricher : enrichers)
{
enricher.enrich(injectionPoint, input);