com.fincatto.documentofiscal.nfe310.classes.nota.NFNotaInfoCanaDeducao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.nfe310.classes.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Element;
import java.math.BigDecimal;
public class NFNotaInfoCanaDeducao extends DFBase {
private static final long serialVersionUID = 5519359886554978924L;
@Element(name = "xDed")
private String descricaoDeducao;
@Element(name = "vDed")
private String valorDeducao;
public void setDescricaoDeducao(final String descricaoDeducao) {
DFStringValidador.tamanho60(descricaoDeducao, "Descricao Deducao");
this.descricaoDeducao = descricaoDeducao;
}
public void setValorDeducao(final BigDecimal valorDeducao) {
this.valorDeducao = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorDeducao, "Valor Deducao");
}
public String getDescricaoDeducao() {
return this.descricaoDeducao;
}
public String getValorDeducao() {
return this.valorDeducao;
}
}