Skip to content

Commit 3d17dcd

Browse files
committed
build: add missing javadoc for factory methood
1 parent 0f59c70 commit 3d17dcd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

modules/jooby-test/src/main/java/io/jooby/JoobyTest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,19 @@
8989
*/
9090
Class<? extends Jooby> value();
9191

92+
/**
93+
* Factory class (owner of {@link #factoryMethod()}. Use for create an application
94+
* programmatically.
95+
*
96+
* @return Factory class or fallback for current test class.
97+
*/
9298
Class<?> factoryClass() default Object.class;
9399

100+
/**
101+
* Name of factory method to create an application programmatically.
102+
*
103+
* @return Name of factory method to create an application programmatically.
104+
*/
94105
String factoryMethod() default "";
95106

96107
/**

0 commit comments

Comments
 (0)