Package com.ibs.academic.models

Examples of com.ibs.academic.models.Config


        setUpdateItem(false);
    }

    public void save(){
        daoConfig.save(item);
        item = new Config();
        setUpdateItem(false);
    }
View Full Code Here


    private List<Config> configList;
    private boolean updateItem;

    @PostConstruct
    public void init(){
        item = new Config();
        daoConfig = DAOConfig.getInstance();
        configList = daoConfig.listAllConfigs();
    }
View Full Code Here

    }

    public void add(){
        daoConfig.save(item);
        configList.add(item);
        item = new Config();
        setUpdateItem(false);
    }
View Full Code Here

TOP

Related Classes of com.ibs.academic.models.Config

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.