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

kermitt2 / grobid / 390

pending completion
390

push

circleci

more log debug; model update

2 of 2 new or added lines in 2 files covered. (100.0%)

14847 of 37498 relevant lines covered (39.59%)

0.4 hits per line

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

0.0
/grobid-core/src/main/java/org/grobid/core/data/PriorArtCitation.java
1
package org.grobid.core.data;
2

3
import java.util.*;
4

5
/**
6
 * Class for managing citation of patent bibliographical references.
7
 *
8
 */
9
public class PriorArtCitation {
×
10
    // cited patent, null if not a patent
11
    private PatentItem patent = null;
×
12

13
    // cited nlp, null if not a npl
14
    private BiblioItem npl = null;
×
15

16
    private List<Passage> passages = null;
×
17
    private String category = null;
×
18

19
    private String comment = null;
×
20

21
    private String rawCitation = null;
×
22
    private String rawClaims = null;
×
23

24
    public PatentItem getPatent() {
25
        return patent;
×
26
    }
27

28
    public void setPatent(PatentItem item) {
29
        patent = item;
×
30
    }
×
31

32
    public BiblioItem getNPL() {
33
        return npl;
×
34
    }
35

36
    public void setNPL(BiblioItem item) {
37
        npl = item;
×
38
    }
×
39

40
    public List<Passage> getPassages() {
41
        return passages;
×
42
    }
43

44
    public void setPassages(List<Passage> pass) {
45
        passages = pass;
×
46
    }
×
47

48
    public String getCategory() {
49
        return category;
×
50
    }
51

52
    public void setCategory(String cat) {
53
        category = cat;
×
54
    }
×
55

56
    public String getComment() {
57
        return comment;
×
58
    }
59

60
    public void setComment(String comm) {
61
        comment = comm;
×
62
    }
×
63

64
    public String getRawCitation() {
65
        return rawCitation;
×
66
    }
67

68
    public void setRawCitation(String raw) {
69
        rawCitation = raw;
×
70
    }
×
71

72
    public String getRawClaims() {
73
        return rawClaims;
×
74
    }
75

76
    public void setRawClaims(String raw) {
77
        rawClaims = raw;
×
78
    }
×
79

80
        // TODO: TEI based encoding
81
}
82

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