#107 JavaDoc for Step Builder

This commit is contained in:
Ilkka Seppala 2015-08-21 23:15:36 +03:00
parent 9a866dfe34
commit ed416ac759
3 changed files with 11 additions and 2 deletions

View File

@ -32,10 +32,15 @@ package com.iluwatar.stepbuilder;
* the object and how they're assembled the construction process must
* allow different representations for the object that's constructed
* when in the process of constructing the order is important.
*
* <p>
* http://rdafbn.blogspot.co.uk/2012/07/step-builder-pattern_28.html
*/
public class App {
/**
* Program entry point
* @param args command line args
*/
public static void main(String[] args) {
Character warrior = CharacterStepBuilder.newBuilder()

View File

@ -6,7 +6,6 @@ import java.util.List;
/**
* The Step Builder class.
*/
public class CharacterStepBuilder {
private CharacterStepBuilder() {

View File

@ -2,6 +2,11 @@ package com.iluwatar.stepbuilder;
import org.junit.Test;
/**
*
* Application test
*
*/
public class AppTest {
@Test