comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId1");
comp.setValue("Any Text");
ItsNatHTMLInputText textInput = compMgr.createItsNatHTMLInputText(null,null);
shared(0,comp,textInput);
comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId2");
comp.setValue(Boolean.TRUE);
ItsNatHTMLInputCheckBox checkBox = compMgr.createItsNatHTMLInputCheckBox(null,null);
checkBox.getElement().setAttribute("style","width:20px;height:20px;");
shared(1,comp,checkBox);