Package net.caece.pri.hibernate

Examples of net.caece.pri.hibernate.Para


        return obj;
    }

    public void objToView(Object obj) {
        Para var = (Para) 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(item.getValue().toString().equals(var.getParaCatalogue())) {
                paraCatalogueCB.setSelectedItem(item);
            }
           
        }
        paraNameTB.setText(var.getParaName());
        paraValueTB.setText(var.getParaValue());
        paraI18nTB.setText(var.getParaI18n());

    }
View Full Code Here


        if(data == null) {
            data = new ArrayList();
           
            Iterator it = cacheList.iterator();
            while(it.hasNext()) {
                Para obj = (Para)it.next();
              if(cataLogue.equals(obj.getParaCatalogue())) {
                  data.add(obj);
              }
            } 
            dataMap.put(cataLogue, data);
        }
View Full Code Here

        if(data == null) {
            data = new ArrayList();
           
            Iterator it = cacheList.iterator();
            while(it.hasNext()) {
                Para obj = (Para)it.next();
              if(cataLogue.equals(obj.getParaCatalogue())) {
                  data.add(obj);
              }
            } 
            dataMap.put(cataLogue, data);
        }
View Full Code Here

TOP

Related Classes of net.caece.pri.hibernate.Para

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.