return var;
}
public void objToView(Object obj) {
Parameter var = (Parameter) obj;
Combobox paraCatalogueCB = (Combobox) getFellow("paraCatalogue");
Textbox paraNameTB = (Textbox) getFellow("paraName");
Textbox paraValueTB = (Textbox) getFellow("paraValue");
Textbox paraI18nTB = (Textbox) getFellow("paraI18n");
List items = paraCatalogueCB.getItems();
Iterator it = items.iterator();
while (it.hasNext()) {
Comboitem item = (Comboitem) it.next();
if (var.getParaCatalogue().equals(item.getValue().toString())) {
paraCatalogueCB.setSelectedItem(item);
}
}
paraNameTB.setText(var.getParaName());
paraValueTB.setText(var.getParaValue());
paraI18nTB.setText(var.getParaI18n());
}