Package br.com.syspartenon.partenon.domain

Examples of br.com.syspartenon.partenon.domain.Noticia


        this.site = site;
    }

    public Noticia getNoticia() {
        if(noticia == null){
            noticia = new Noticia();
            noticia.setSite(site);
        }
        return noticia;
    }
View Full Code Here


            messageContext.add("Erro ao remover Noticia: " + e.getMessage(), SeverityType.ERROR);
        }
    }
   
    public void novaNoticia(){
        this.noticia = new Noticia();
        noticia.setSite(getSite());
    }
View Full Code Here

        this.novaPagina = novaPagina;
    }

    public Noticia getNovaNoticia() {
        if(this.novaNoticia == null)
            this.novaNoticia = new Noticia();
        return this.novaNoticia;
    }
View Full Code Here

TOP

Related Classes of br.com.syspartenon.partenon.domain.Noticia

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.