• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #7126

09 Aug 2016 11:45AM UTC coverage: 78.549% (-0.6%) from 79.109%
#7126

push

travis-ci

jefperito
Corrigido erro de javadoc

Erro corrigido: Exit code: 1 -
/home/travis/build/wmixvideo/nfe/src/main/java/com/fincatto/nfe310/class
es/NFAutorizador31.java:93: error: bad use of '>'

14 of 14 new or added lines in 1 file covered. (100.0%)

321 existing lines in 19 files now uncovered.

4764 of 6065 relevant lines covered (78.55%)

50.43 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

61.76
/src/main/java/com/fincatto/nfe310/classes/nota/NFNotaInfoItemImpostoICMS30.java
1
package com.fincatto.nfe310.classes.nota;
2

3
import java.math.BigDecimal;
4

5
import org.simpleframework.xml.Element;
6

7
import com.fincatto.nfe310.classes.NFBase;
8
import com.fincatto.nfe310.classes.NFNotaInfoImpostoTributacaoICMS;
9
import com.fincatto.nfe310.classes.NFNotaInfoItemModalidadeBCICMSST;
10
import com.fincatto.nfe310.classes.NFNotaMotivoDesoneracaoICMS;
11
import com.fincatto.nfe310.classes.NFOrigem;
12
import com.fincatto.nfe310.validadores.BigDecimalParser;
13

14
public class NFNotaInfoItemImpostoICMS30 extends NFBase {
18✔
15
    @Element(name = "orig", required = true)
16
    private NFOrigem origem;
17

18
    @Element(name = "CST", required = true)
19
    private NFNotaInfoImpostoTributacaoICMS situacaoTributaria;
20

21
    @Element(name = "modBCST", required = true)
22
    private NFNotaInfoItemModalidadeBCICMSST modalidadeBCICMSST;
23

24
    @Element(name = "pMVAST", required = false)
25
    private String percentualMargemValorAdicionadoICMSST;
26

27
    @Element(name = "pRedBCST", required = false)
28
    private String percentualReducaoBCICMSST;
29

30
    @Element(name = "vBCST", required = true)
31
    private String valorBCICMSST;
32

33
    @Element(name = "pICMSST", required = true)
34
    private String percentualAliquotaImpostoICMSST;
35

36
    @Element(name = "vICMSST", required = true)
37
    private String valorImpostoICMSST;
38

39
    @Element(name = "vICMSDeson", required = false)
40
    private String valorICMSDesoneracao;
41

42
    @Element(name = "motDesICMS", required = false)
43
    private NFNotaMotivoDesoneracaoICMS desoneracao;
44

45
    public void setOrigem(final NFOrigem origem) {
46
        this.origem = origem;
10✔
47
    }
10✔
48

49
    public void setSituacaoTributaria(final NFNotaInfoImpostoTributacaoICMS situacaoTributaria) {
50
        this.situacaoTributaria = situacaoTributaria;
10✔
51
    }
10✔
52

53
    /**
54
     * @deprecated Utilizar setModalidadeBCICMSST(...)
55
     */
56
    @Deprecated    
57
    public void setModalidadeDeterminacaoBC(final NFNotaInfoItemModalidadeBCICMSST modalidadeDeterminacaoBC) {
UNCOV
58
        this.modalidadeBCICMSST = modalidadeDeterminacaoBC;
×
UNCOV
59
    }
×
60

61
    public void setModalidadeBCICMSST(final NFNotaInfoItemModalidadeBCICMSST modalidadeBCICMSST) {
62
        this.modalidadeBCICMSST = modalidadeBCICMSST;
10✔
63
    }
10✔
64
    
65
    public void setPercentualMargemValorAdicionadoICMSST(final BigDecimal percentualMargemValorAdicionadoICMSST) {
66
        this.percentualMargemValorAdicionadoICMSST = BigDecimalParser.tamanho7ComAte4CasasDecimais(percentualMargemValorAdicionadoICMSST, "Percentual Margem Valor Adicionado ICMS ST ICMS30 Item");
11✔
67
    }
10✔
68

69
    public void setPercentualReducaoBCICMSST(final BigDecimal percentualReducaoBCICMSST) {
70
        this.percentualReducaoBCICMSST = BigDecimalParser.tamanho7ComAte4CasasDecimais(percentualReducaoBCICMSST, "Percentual Reducao BC ICMS ST ICMS30 Item");
11✔
71
    }
10✔
72

73
    public void setValorBCICMSST(final BigDecimal valorBCICMSST) {
74
        this.valorBCICMSST = BigDecimalParser.tamanho15Com2CasasDecimais(valorBCICMSST, "Valor BC ICMS ST ICMS30 Item");
11✔
75
    }
10✔
76

77
    public void setPercentualAliquotaImpostoICMSST(final BigDecimal aliquotaImpostoICMSST) {
78
        this.percentualAliquotaImpostoICMSST = BigDecimalParser.tamanho7ComAte4CasasDecimais(aliquotaImpostoICMSST, "Aliquota Imposto ICMS ST ICMS30 Item");
11✔
79
    }
10✔
80

81
    public void setValorImpostoICMSST(final BigDecimal valorImpostoICMSST) {
82
        this.valorImpostoICMSST = BigDecimalParser.tamanho15Com2CasasDecimais(valorImpostoICMSST, "Valor Imposto ICMS ST ICMS30 Item");
11✔
83
    }
10✔
84

85
    public void setDesoneracao(final NFNotaMotivoDesoneracaoICMS nfNotaMotivoDesoneracaoICMS) {
86
        this.desoneracao = nfNotaMotivoDesoneracaoICMS;
10✔
87
    }
10✔
88

89
    public void setValorICMSDesoneracao(final BigDecimal valorICMSDesoneracao) {
90
        this.valorICMSDesoneracao = BigDecimalParser.tamanho15Com2CasasDecimais(valorICMSDesoneracao, "Valor ICMS Desoneracao");
10✔
91
    }
10✔
92

93
    public NFOrigem getOrigem() {
94
        return this.origem;
×
95
    }
96

97
    public NFNotaInfoImpostoTributacaoICMS getSituacaoTributaria() {
98
        return this.situacaoTributaria;
×
99
    }
100

101
    /**
102
     * @deprecated Utilizar getModalidadeBCICMSST(...)
103
     * @return
104
     */
105
    @Deprecated      
106
    public NFNotaInfoItemModalidadeBCICMSST getModalidadeDeterminacaoBC() {
UNCOV
107
        return this.modalidadeBCICMSST;
×
108
    }
109
    
110
    public NFNotaInfoItemModalidadeBCICMSST getModalidadeBCICMSST() {
UNCOV
111
        return this.modalidadeBCICMSST;
×
112
    }
113

114
    public String getPercentualMargemValorAdicionadoICMSST() {
UNCOV
115
        return this.percentualMargemValorAdicionadoICMSST;
×
116
    }
117

118
    public String getPercentualReducaoBCICMSST() {
UNCOV
119
        return this.percentualReducaoBCICMSST;
×
120
    }
121

122
    public String getValorBCICMSST() {
UNCOV
123
        return this.valorBCICMSST;
×
124
    }
125

126
    public String getPercentualAliquotaImpostoICMSST() {
UNCOV
127
        return this.percentualAliquotaImpostoICMSST;
×
128
    }
129

130
    public String getValorImpostoICMSST() {
UNCOV
131
        return this.valorImpostoICMSST;
×
132
    }
133

134
    public String getValorICMSDesoneracao() {
UNCOV
135
        return this.valorICMSDesoneracao;
×
136
    }
137

138
    public NFNotaMotivoDesoneracaoICMS getDesoneracao() {
UNCOV
139
        return this.desoneracao;
×
140
    }
141
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc