final ListBox factList = new ListBox();
factList.addItem(constants.loadingList());
RepositoryServiceFactory.getService().listTypesInPackage(this.conf.uuid, new GenericCallback<String[]>() {
public void onSuccess(String[] list) {
factList.clear();
for (int i = 0; i < list.length; i++) {
if (global) {
factList.addItem(list[i]);
} else {
if (list[i].indexOf('.') > -1) {