Package br.com.syspartenon.partenon.business

Examples of br.com.syspartenon.partenon.business.CidadeBC.load()


public class CidadeConverter implements Converter {

    @Override
    public Object getAsObject(FacesContext fc, UIComponent uic, String id) {
        CidadeBC bc = Beans.getReference(CidadeBC.class);
        return bc.load(new Integer(id));
    }

    @Override
    public String getAsString(FacesContext fc, UIComponent uic, Object o) {
        if (o == null)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.