Package br.jus.tjrn.arq.persistence

Examples of br.jus.tjrn.arq.persistence.Persistent


     * para poder resgatá-lo posteriormente.
     */
    @Override
    public String getAsString(FacesContext ctx, UIComponent component, Object value) {
        if (value != null && !"".equals(value)) {
            Persistent entity = (Persistent) value;
            // adiciona item como atributo do componente
            this.addAttribute(component, entity);

            Integer codigo = entity.getId();
            if (codigo != null) {
                return String.valueOf(codigo);
            }
        }

View Full Code Here

TOP

Related Classes of br.jus.tjrn.arq.persistence.Persistent

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.