All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jrimum.bopepo.campolivre.AbstractCLSantander Maven / Gradle / Ivy

Go to download

This is a fork and merge from JRimum ( http://www.jrimum.org ), - Bopepo: https://github.com/jrimum/bopepo - Texgit: https://github.com/jrimum/texgit - Valia: https://github.com/jrimum/vallia - Utilix: https://github.com/jrimum/utilix - Domkee: https://github.com/jrimum/domkee For Brazillian Boleto Payment Method. So much thanks for original authors: Gilmar P. S. L, Misael Barreto and Rômulo Augusto.

The newest version!
package org.jrimum.bopepo.campolivre;

import org.jrimum.domkee.banco.Titulo;

/**
 * 

* Interface comum para todos os campos livres do Banco Santander que venham a * existir. *

* * @author Gilmar P.S.L * * @since 0.2 * * @version 0.2 */ abstract class AbstractCLSantander extends AbstractCampoLivre { /** * */ private static final long serialVersionUID = 1882819688182515282L; /** *

Cria um campo livre com um determinado número de campos

* * @see AbstractCampoLivre * * @param fieldsLength - Número de campos */ protected AbstractCLSantander(Integer fieldsLength) { super(fieldsLength); } protected static CampoLivre create(Titulo titulo) { return new CLBancoSantander(titulo); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy