Skip to content

Commit 8b74457

Browse files
committed
Fix Javadoc value tags. (#396)
1 parent 39bd9e0 commit 8b74457

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

metafacture-biblio/src/main/java/org/metafacture/biblio/marc21/Marc21EventNames.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class Marc21EventNames {
4141
/**
4242
* Name of the <i>literal</i> event emitted for the record status field.
4343
* <p>
44-
* The name of the literal is &quot;{@value #RECORD_STATUS_LITERAL}&quot;.
44+
* The name of the literal is {@value #RECORD_STATUS_LITERAL}.
4545
* <p>
4646
* The record status is specified at position 5 in the record leader.
4747
*
@@ -54,8 +54,7 @@ public final class Marc21EventNames {
5454
* Name of the <i>literal</i> event emitted for the bibliographic level
5555
* field.
5656
* <p>
57-
* The name of the literal is
58-
* &quot;{@value #BIBLIOGRAPHIC_LEVEL_LITERAL}&quot;.
57+
* The name of the literal is {@value #BIBLIOGRAPHIC_LEVEL_LITERAL}.
5958
* <p>
6059
* The bibliographic level is specified at position 7 in the record leader.
6160
*
@@ -67,7 +66,7 @@ public final class Marc21EventNames {
6766
/**
6867
* Name of the <i>literal</i> event emitted for the type of control field.
6968
* <p>
70-
* The name of the literal is &quot;{@value #TYPE_OF_CONTROL_LITERAL}&quot;.
69+
* The name of the literal is {@value #TYPE_OF_CONTROL_LITERAL}.
7170
* <p>
7271
* The type of control is specified at position 8 in the record leader.
7372
*
@@ -80,7 +79,7 @@ public final class Marc21EventNames {
8079
* Name of the <i>literal</i> event emitted for the character coding scheme
8180
* field.
8281
* <p>
83-
* The name of the literal is &quot;{@value #CHARACTER_CODING_LITERAL}&quot;.
82+
* The name of the literal is {@value #CHARACTER_CODING_LITERAL}.
8483
* <p>
8584
* The character coding scheme is specified at position 9 in the record
8685
* leader.
@@ -93,7 +92,7 @@ public final class Marc21EventNames {
9392
/**
9493
* Name of the <i>literal</i> event emitted for the encoding level field.
9594
* <p>
96-
* The name of the literal is &quot;{@value #ENCODING_LEVEL_LITERAL}&quot;.
95+
* The name of the literal is {@value #ENCODING_LEVEL_LITERAL}.
9796
* <p>
9897
* The encoding level is specified at position 17 in the record leader.
9998
*
@@ -106,7 +105,7 @@ public final class Marc21EventNames {
106105
* Name of the <i>literal</i> event emitted for the descriptive cataloging
107106
* form field.
108107
* <p>
109-
* The name of the literal is &quot;{@value #CATALOGING_FORM_LITERAL}&quot;.
108+
* The name of the literal is {@value #CATALOGING_FORM_LITERAL}.
110109
* <p>
111110
* The descriptive cataloging form is specified at position 18 in the record
112111
* leader.
@@ -120,7 +119,7 @@ public final class Marc21EventNames {
120119
* Name of the <i>literal</i> event emitted for the multipart resource
121120
* record level field.
122121
* <p>
123-
* The name of the literal is &quot;{@value #MULTIPART_LEVEL_LITERAL}&quot;.
122+
* The name of the literal is {@value #MULTIPART_LEVEL_LITERAL}.
124123
* <p>
125124
* The multipart resource record level is specified at position 19 in the
126125
* record leader.
@@ -133,7 +132,7 @@ public final class Marc21EventNames {
133132
/**
134133
* Name of the <i>literal</i> event emitted for the type of record field.
135134
* <p>
136-
* The name of the literal is &quot;{@value #RECORD_TYPE_LITERAL}&quot;.
135+
* The name of the literal is {@value #RECORD_TYPE_LITERAL}.
137136
* <p>
138137
* The type of record is specified at position 6 in the record leader.
139138
*

metafacture-mangling/src/main/java/org/metafacture/mangling/EntityPathTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public String getEntitySeparator() {
9090

9191
/**
9292
* Sets the separator between entity names in the path. The default separator
93-
* is &quot;{@value DEFAULT_ENTITY_SEPARATOR}&quot;.
93+
* is {@value DEFAULT_ENTITY_SEPARATOR}.
9494
*
9595
* <p>The separator must not be changed while processing a stream.
9696
*

metafacture-mangling/src/main/java/org/metafacture/mangling/RecordToEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public String getEntityName() {
5757

5858
/**
5959
* Sets the name of the entity which replaces the record. The default name is
60-
* &quot;{@value DEFAULT_ENTITY_NAME}&quot;.
60+
* {@value DEFAULT_ENTITY_NAME}.
6161
*
6262
* <p>The entity name may be changed while processing an event stream. It
6363
* becomes effective with the next record.

metafacture-strings/src/main/java/org/metafacture/strings/RegexDecoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
* The regular expression may contain unnamed capture groups. These are
5050
* ignored.
5151
* <p>
52-
* If the pattern contains a capture group named &quot;{@value
53-
* #ID_CAPTURE_GROUP}&quot;, the first match of this group will be used as
54-
* record identifier. If there is no such capture group or if it does not
55-
* match, the empty string is used as record identifier.
52+
* If the pattern contains a capture group named {@value #ID_CAPTURE_GROUP},
53+
* the first match of this group will be used as record identifier. If there
54+
* is no such capture group or if it does not match, the empty string is used
55+
* as record identifier.
5656
* <p>
5757
* Example: The regex
5858
* <pre>{@literal

0 commit comments

Comments
 (0)