}
@Test
public void testInputType()
{
HintsFacet hints = firstName.getFacet(HintsFacet.class);
String inputType = hints.getInputType();
Assert.assertEquals(InputType.DEFAULT, inputType);
hints.setInputType(InputType.TEXTAREA);
Assert.assertSame(firstName, firstName);
Assert.assertSame(InputType.TEXTAREA, hints.getInputType());
}