import ufrj.zkdemo.Catalog; import ufrj.zkdemo.Contact; Catalog catalog = new Catalog(); public void addContact() { Contact contact = new Contact(name.value, tel.value); char alpha = catalog.addContact(contact); //insere um novo Tarefa na listbox Listitem li = new Listitem(); li.setValue(contact); li.appendChild(new Listcell(name.value)); li.appendChild(new Listcell(tel.value)); Listbox temp = (Listbox) Path.getComponent("//catalogPage/"+alpha); temp.appendChild(li); }