this.comp = (ItsNatFreeLabel)compMgr.createItsNatComponentById("labelId","freeLabel",null);
try { comp.setValue(new Person("Jose M.","Arranz")); }
catch(PropertyVetoException ex) { throw new RuntimeException(ex); }
ItsNatLabelEditor editor = new PersonCustomLabelEditor(comp);
comp.setItsNatLabelEditor(editor);
comp.addEventListener("click",this);
comp.addPropertyChangeListener("value",this);
}