Package banco_imobiliario.AbstractFactoryLogradouro

Source Code of banco_imobiliario.AbstractFactoryLogradouro.LogradouroLucrosOuDividendosFactory

/*
* 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.LogradouroLucrosOuDividendos;

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

    @Override
    public Logradouro criarLogradouro(int id) {
        LogradouroLucrosOuDividendos lucrosOuDividendos = new LogradouroLucrosOuDividendos();
        return lucrosOuDividendos;
    }
   
}
TOP

Related Classes of banco_imobiliario.AbstractFactoryLogradouro.LogradouroLucrosOuDividendosFactory

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.