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

wmixvideo / nfe / #6582

17 Jul 2025 09:30PM UTC coverage: 51.231% (+24.2%) from 26.996%
#6582

push

web-flow
Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e (#1054)

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

14006 of 27339 relevant lines covered (51.23%)

0.51 hits per line

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

70.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFe.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota;
2

3
import org.simpleframework.xml.Element;
4
import org.simpleframework.xml.Namespace;
5
import org.simpleframework.xml.Root;
6

7
import com.fincatto.documentofiscal.DFBase;
8
import com.fincatto.documentofiscal.nfe310.classes.nota.assinatura.NFSignature;
9

10
/**
11
 * Created by Eldevan Nery Junior on 03/11/17. Tipo Manifesto de Documentos
12
 * Fiscais Eletrônicos.
13
 */
14
@Root(name = "MDFe")
15
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
16
public class MDFe extends DFBase {
1✔
17

18
    private static final long serialVersionUID = -4082665506491508726L;
19

20
    public static final String VERSAO = "3.00";
21

22
    @Element(name = "infMDFe")
23
    private MDFInfo info;
24

25
    @Element(name = "infMDFeSupl", required = false)
26
    private MDFInfoSuplementar mdfInfoSuplementar;
27

28
    @Element(name = "Signature", required = false)
29
    private NFSignature assinatura;
30

31
    public MDFInfo getInfo() {
32
        return this.info;
×
33
    }
34

35
    public void setInfo(final MDFInfo info) {
36
        this.info = info;
1✔
37
    }
1✔
38

39
    public MDFInfoSuplementar getMdfInfoSuplementar() {
40
        return mdfInfoSuplementar;
×
41
    }
42

43
    public void setMdfInfoSuplementar(MDFInfoSuplementar mdfInfoSuplementar) {
44
        this.mdfInfoSuplementar = mdfInfoSuplementar;
1✔
45
    }
1✔
46

47
    public NFSignature getAssinatura() {
48
        return this.assinatura;
×
49
    }
50

51
    public void setAssinatura(final NFSignature assinatura) {
52
        this.assinatura = assinatura;
1✔
53
    }
1✔
54
}
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

© 2025 Coveralls, Inc