Package banco_imobiliario.AbstractFactoryLogradouro

Source Code of banco_imobiliario.AbstractFactoryLogradouro.LogradouroParadaLivreFactory

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package banco_imobiliario.AbstractFactoryLogradouro;

import banco_imobiliario.model.Logradouro;
import banco_imobiliario.model.LogradouroParadaLivre;

/**
*
* @author Andre
*/
public class LogradouroParadaLivreFactory implements LogradouroFactory{

    @Override
    public Logradouro criarLogradouro(int indice) {
        LogradouroParadaLivre paradaLivre = new LogradouroParadaLivre();
        paradaLivre.setIndice(indice);
        paradaLivre.setNome("Parada Livre");
        return paradaLivre;
    }
   
}
TOP

Related Classes of banco_imobiliario.AbstractFactoryLogradouro.LogradouroParadaLivreFactory

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.