HTMLInputElement inputText = (HTMLInputElement)inputList.item(0);
final ItsNatHTMLInputText inputTextComp = (ItsNatHTMLInputText)compMgr.createItsNatComponent(inputText);
inputTextComp.setText("Hello");
HTMLTextAreaElement textArea = (HTMLTextAreaElement)elem.getElementsByTagName("textarea").item(0);
final ItsNatHTMLTextArea textAreaComp = (ItsNatHTMLTextArea)compMgr.createItsNatComponent(textArea);
textAreaComp.setText("Hello");
HTMLInputElement inputCheck = (HTMLInputElement)inputList.item(1);
final ItsNatHTMLInputCheckBox inputCheckComp = (ItsNatHTMLInputCheckBox)compMgr.createItsNatComponent(inputCheck);