Skip to content

Commit ed416ac

Browse files
committed
iluwatar#107 JavaDoc for Step Builder
1 parent 9a866df commit ed416ac

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

step-builder/src/main/java/com/iluwatar/stepbuilder/App.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,15 @@
3232
* the object and how they're assembled the construction process must
3333
* allow different representations for the object that's constructed
3434
* when in the process of constructing the order is important.
35-
*
35+
* <p>
3636
* http://rdafbn.blogspot.co.uk/2012/07/step-builder-pattern_28.html
3737
*/
3838
public class App {
39+
40+
/**
41+
* Program entry point
42+
* @param args command line args
43+
*/
3944
public static void main(String[] args) {
4045

4146
Character warrior = CharacterStepBuilder.newBuilder()

step-builder/src/main/java/com/iluwatar/stepbuilder/CharacterStepBuilder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
/**
77
* The Step Builder class.
88
*/
9-
109
public class CharacterStepBuilder {
1110

1211
private CharacterStepBuilder() {

step-builder/src/test/java/com/iluwatar/stepbuilder/AppTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
import org.junit.Test;
44

5+
/**
6+
*
7+
* Application test
8+
*
9+
*/
510
public class AppTest {
611

712
@Test

0 commit comments

Comments
 (0)