Skip to content

Commit cabc095

Browse files
committed
Fix javadoc for module "html"
See #396.
1 parent 24b3fe0 commit cabc095

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

metafacture-html/src/main/java/org/metafacture/html/HtmlDecoder.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,12 @@ private boolean handleAttributeValuesAsSubfields(final StreamReceiver receiver,
123123
return false;
124124
}
125125

126+
/**
127+
* Sets attribute values as subfields. If the value(s) start with an `&` they
128+
* are appended to {@link #DEFAULT_ATTR_VALS_AS_SUBFIELDS}.
129+
*
130+
* @param mapString the attributes to be added as subfields
131+
*/
126132
public void setAttrValsAsSubfields(final String mapString) {
127133
this.attrValsAsSubfields = new HashMap<String, String>();
128134
final String input = mapString.startsWith("&") ? DEFAULT_ATTR_VALS_AS_SUBFIELDS + mapString : mapString;

0 commit comments

Comments
 (0)