* Pre-configure input based on WithAttributes info if annotation exists
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
private void preconfigureInput(InputComponent<?, ?> input, WithAttributes atts)
{
HintsFacetImpl hintsFacet = new HintsFacetImpl(input, environment);
input.install(hintsFacet);
if (atts != null)
{
input.setEnabled(atts.enabled());
input.setLabel(atts.label());