Skip to content

Commit 91f02e4

Browse files
committed
Fix javadoc for module "formeta"
See #396.
1 parent f7cc590 commit 91f02e4

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

metafacture-formeta/src/main/java/org/metafacture/formeta/FormetaEncoder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ public FormatterStyle getStyle() {
4848
return style;
4949
}
5050

51+
/**
52+
* Sets the style of the Formatter.
53+
*
54+
* @param formatterStyle the FormatterStyle
55+
*/
5156
public void setStyle(final FormatterStyle formatterStyle) {
5257
this.style = formatterStyle;
5358
formatter = formatterStyle.createFormatter();

metafacture-formeta/src/main/java/org/metafacture/formeta/parser/FormetaParser.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ public Emitter getEmitter() {
4848
return structureParserContext.getEmitter();
4949
}
5050

51+
/**
52+
* Parses the data.
53+
*
54+
* @param data the data
55+
*/
5156
public void parse(final String data) {
5257
assert structureParserContext.getEmitter() != null : "No emitter set";
5358

0 commit comments

Comments
 (0)