Package ecar.dao

Examples of ecar.dao.AtributoDemandaDao


     *
     */
    public PopUpRegDemanda() throws ECARException{
        pojo = new RegDemandaRegd();
        dao = new RegDemandaDao(null);
        atributoDemandaDao = new AtributoDemandaDao(null);
        this.setPesquisarEm(new String[] {atributoDemandaDao.getLabelAtributoDemandaFixo(descricaoRegd),
                          "Sigla " + atributoDemandaDao.getLabelAtributoDemandaFixo(entidade),
                          "Nome " + atributoDemandaDao.getLabelAtributoDemandaFixo(entidade),
                          atributoDemandaDao.getLabelAtributoDemandaFixo(nomeSolicitanteRegd)});
    }
View Full Code Here


     * @param request
     */
    public PopUpRegDemanda(HttpServletRequest request) throws ECARException{
        pojo = new RegDemandaRegd();
        dao = new RegDemandaDao(request);
        atributoDemandaDao = new AtributoDemandaDao(null);
        this.setPesquisarEm(new String[] {atributoDemandaDao.getLabelAtributoDemandaFixo(descricaoRegd),
                          "Sigla " + atributoDemandaDao.getLabelAtributoDemandaFixo(entidade),
                          "Nome " + atributoDemandaDao.getLabelAtributoDemandaFixo(entidade),
                          atributoDemandaDao.getLabelAtributoDemandaFixo(nomeSolicitanteRegd)});
    }
View Full Code Here

TOP

Related Classes of ecar.dao.AtributoDemandaDao

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.