-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MARC tags defined locally at Országygyűlési Könyvtár, Budapest #486
- Loading branch information
Showing
20 changed files
with
735 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/main/java/de/gwdg/metadataqa/marc/definition/tags/ogyktags/Tag592.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package de.gwdg.metadataqa.marc.definition.tags.ogyktags; | ||
|
||
import de.gwdg.metadataqa.marc.definition.Cardinality; | ||
import de.gwdg.metadataqa.marc.definition.structure.DataFieldDefinition; | ||
import de.gwdg.metadataqa.marc.definition.structure.Indicator; | ||
|
||
/** | ||
* Locally defined field in OGYK | ||
*/ | ||
public class Tag592 extends DataFieldDefinition { | ||
|
||
private static Tag592 uniqueInstance; | ||
|
||
private Tag592() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag592 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag592(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "592"; | ||
label = "Megjegyzés a különlenyomatról"; | ||
mqTag = "MegjegyzesKulonlenyomatrol"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://wiki.ogyk.hu/doku.php?id=ogyk:gyszo:katszab:konyv:592"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Megjegyzés szövege", "NR" | ||
); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
src/main/java/de/gwdg/metadataqa/marc/definition/tags/ogyktags/Tag596.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package de.gwdg.metadataqa.marc.definition.tags.ogyktags; | ||
|
||
import de.gwdg.metadataqa.marc.definition.Cardinality; | ||
import de.gwdg.metadataqa.marc.definition.structure.DataFieldDefinition; | ||
import de.gwdg.metadataqa.marc.definition.structure.Indicator; | ||
|
||
/** | ||
* Locally defined field in OGYK | ||
*/ | ||
public class Tag596 extends DataFieldDefinition { | ||
|
||
private static Tag596 uniqueInstance; | ||
|
||
private Tag596() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag596 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag596(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "596"; | ||
label = "Megjegyzés a szabványosításról, az adatgyűjtés lezárásáról és a hatályba lépésről"; | ||
mqTag = "MegjegyzesSzabvanyositasiAdatok"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://wiki.ogyk.hu/doku.php?id=ogyk:gyszo:katszab:konyv:596"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Megjegyzés szövege", "NR" | ||
); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
src/main/java/de/gwdg/metadataqa/marc/definition/tags/ogyktags/Tag597.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package de.gwdg.metadataqa.marc.definition.tags.ogyktags; | ||
|
||
import de.gwdg.metadataqa.marc.definition.Cardinality; | ||
import de.gwdg.metadataqa.marc.definition.structure.DataFieldDefinition; | ||
import de.gwdg.metadataqa.marc.definition.structure.Indicator; | ||
|
||
/** | ||
* Locally defined field in OGYK | ||
*/ | ||
public class Tag597 extends DataFieldDefinition { | ||
|
||
private static Tag597 uniqueInstance; | ||
|
||
private Tag597() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag597 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag597(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "597"; | ||
label = "Megjegyzés a megjelenésről"; | ||
mqTag = "MegjegyzesMegjelenesrol"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://wiki.ogyk.hu/doku.php?id=ogyk:gyszo:katszab:konyv:597"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Megjegyzés szövege", "NR" | ||
); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
src/main/java/de/gwdg/metadataqa/marc/definition/tags/ogyktags/Tag599.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package de.gwdg.metadataqa.marc.definition.tags.ogyktags; | ||
|
||
import de.gwdg.metadataqa.marc.definition.Cardinality; | ||
import de.gwdg.metadataqa.marc.definition.structure.DataFieldDefinition; | ||
import de.gwdg.metadataqa.marc.definition.structure.Indicator; | ||
|
||
/** | ||
* Locally defined field in OGYK | ||
*/ | ||
public class Tag599 extends DataFieldDefinition { | ||
|
||
private static Tag599 uniqueInstance; | ||
|
||
private Tag599() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag599 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag599(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "599"; | ||
label = "Példány- és verzióazonosító megjegyzés"; | ||
mqTag = "PeldanyMegjegyzes"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://wiki.ogyk.hu/doku.php?id=ogyk:gyszo:katszab:konyv:599"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Megjegyzés szövege", "NR" | ||
); | ||
} | ||
} |
Oops, something went wrong.