*/
public ItsNatHTMLInputTextBasedUIImpl(ItsNatHTMLInputTextBasedImpl parentComp)
{
super(parentComp);
HTMLInputElement element = getHTMLInputElement();
String type = element.getAttribute("type");
type = type.toLowerCase();
if (!type.equals("text") && !type.equals("password") && !type.equals("file") && !type.equals("hidden"))
throw new ItsNatDOMException("HTMLInputElement type property must be text, password, file of hidden: " + type,element);
}