Skip to content

Commit f7cc590

Browse files
committed
Fix javadoc for module "flux"
See #396.
1 parent ceae172 commit f7cc590

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

metafacture-flux/src/main/java/org/metafacture/flux/HelpPrinter.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import java.util.Map;
3838

3939
/**
40-
* prints Flux help for a given {@link ObjectFactory}
40+
* Prints Flux help for a given {@link ObjectFactory}
4141
*
4242
* @author Markus Michael Geipel
4343
*/
@@ -46,6 +46,13 @@ private HelpPrinter() {
4646
// no instances
4747
}
4848

49+
/**
50+
* Prints Flux help for a given ObjectFactory. Excerpts setters and their
51+
* arguments, @in annotations and @out annotations.
52+
*
53+
* @param factory the ObjectFactory
54+
* @param out the PrintStream to print to
55+
*/
4956
public static void print(final ObjectFactory<?> factory,
5057
final PrintStream out) {
5158
out.println("Welcome to Metafacture");

metafacture-flux/src/main/java/org/metafacture/flux/parser/FluxProgramm.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ protected void compile() {
157157
}
158158
}
159159

160+
/**
161+
* Starts all flows.
162+
*/
160163
public void start() {
161164
for (final Flow flow : initialFlows) {
162165
flow.start();

0 commit comments

Comments
 (0)