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

pkiraly / metadata-qa-marc / #1527

22 Aug 2025 02:21PM UTC coverage: 90.345%. Remained the same
#1527

push

pkiraly
Improve timeline handling

5191 of 6416 new or added lines in 219 files covered. (80.91%)

886 existing lines in 78 files now uncovered.

36717 of 40641 relevant lines covered (90.34%)

0.9 hits per line

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

0.0
/src/main/java/de/gwdg/metadataqa/marc/utils/unimarc/UnimarcDataField.java
1
package de.gwdg.metadataqa.marc.utils.unimarc;
2

3
import org.marc4j.marc.impl.DataFieldImpl;
4

5
/**
6
 * Represents a data field in a UNIMARC record. A data field consists of a tag, two indicators and
7
 * variable length list of subfields.
8
 * A schema counterpart of this class is {@link de.gwdg.metadataqa.marc.utils.unimarc.UnimarcFieldDefinition},
9
 * which represents a definition of a UNIMARC field in the scehma.
10
 */
11
public class UnimarcDataField extends DataFieldImpl {
12
  private String occurrence;
13

14
  /**
15
   * Creates a new <code>DataField</code> and sets the tag name and the first and second indicator codes.
16
   *
17
   * @param tag A UNIMARC tag name (e.g. 100)
18
   * @param ind1 The first indicator code
19
   * @param ind2 The second indicator code
20
   */
21
  public UnimarcDataField(String tag, char ind1, char ind2) {
NEW
22
    super(tag, ind1, ind2);
×
NEW
23
  }
×
24
}
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