this.useSingleClickComp = (ItsNatHTMLInputCheckBox)compMgr.createItsNatComponentById("useSingleClickId");
useSingleClickComp.addEventListener("click",this);
try
{
ItsNatFreeLabel comp;
comp = (ItsNatFreeLabel)compMgr.createItsNatComponentById("labelId1","freeLabel",null);
comp.setValue("Any Text");
ItsNatHTMLInputText textInput = compMgr.createItsNatHTMLInputText(null,null);
shared(0,comp,textInput);
comp = (ItsNatFreeLabel)compMgr.createItsNatComponentById("labelId2","freeLabel",null);
comp.setValue(Boolean.TRUE);
ItsNatHTMLInputCheckBox checkBox = compMgr.createItsNatHTMLInputCheckBox(null,null);
shared(1,comp,checkBox);
comp = (ItsNatFreeLabel)compMgr.createItsNatComponentById("labelId3","freeLabel",null);
comp.setValue(new Integer(3));
ItsNatHTMLSelectComboBox comboBox = compMgr.createItsNatHTMLSelectComboBox(null,null);
DefaultComboBoxModel model = (DefaultComboBoxModel)comboBox.getComboBoxModel();
for(int i=0; i < 5; i++) model.addElement(new Integer(i));
shared(2,comp,comboBox);
comp = (ItsNatFreeLabel)compMgr.createItsNatComponentById("labelId4","freeLabel",null);
comp.setValue(new Date());
ItsNatHTMLInputTextFormatted textInputFormatted = compMgr.createItsNatHTMLInputTextFormatted(null,null);
shared(3,comp,textInputFormatted);
comp = (ItsNatFreeLabel)compMgr.createItsNatComponentById("labelId5","freeLabel",null);
comp.setValue("Any \n Text");
ItsNatHTMLTextArea textArea = compMgr.createItsNatHTMLTextArea(null,null);
shared(4,comp,textArea);
}
catch(PropertyVetoException ex)
{