File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
metafacture-flux/src/main/java/org/metafacture/flux Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 37
37
import java .util .Map ;
38
38
39
39
/**
40
- * prints Flux help for a given {@link ObjectFactory}
40
+ * Prints Flux help for a given {@link ObjectFactory}
41
41
*
42
42
* @author Markus Michael Geipel
43
43
*/
@@ -46,6 +46,13 @@ private HelpPrinter() {
46
46
// no instances
47
47
}
48
48
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
+ */
49
56
public static void print (final ObjectFactory <?> factory ,
50
57
final PrintStream out ) {
51
58
out .println ("Welcome to Metafacture" );
Original file line number Diff line number Diff line change @@ -157,6 +157,9 @@ protected void compile() {
157
157
}
158
158
}
159
159
160
+ /**
161
+ * Starts all flows.
162
+ */
160
163
public void start () {
161
164
for (final Flow flow : initialFlows ) {
162
165
flow .start ();
You can’t perform that action at this time.
0 commit comments