#107 JavaDoc for Step Builder
This commit is contained in:
parent
9a866dfe34
commit
ed416ac759
@ -32,10 +32,15 @@ package com.iluwatar.stepbuilder;
|
|||||||
* the object and how they're assembled the construction process must
|
* the object and how they're assembled the construction process must
|
||||||
* allow different representations for the object that's constructed
|
* allow different representations for the object that's constructed
|
||||||
* when in the process of constructing the order is important.
|
* when in the process of constructing the order is important.
|
||||||
*
|
* <p>
|
||||||
* http://rdafbn.blogspot.co.uk/2012/07/step-builder-pattern_28.html
|
* http://rdafbn.blogspot.co.uk/2012/07/step-builder-pattern_28.html
|
||||||
*/
|
*/
|
||||||
public class App {
|
public class App {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Program entry point
|
||||||
|
* @param args command line args
|
||||||
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
Character warrior = CharacterStepBuilder.newBuilder()
|
Character warrior = CharacterStepBuilder.newBuilder()
|
||||||
|
@ -6,7 +6,6 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* The Step Builder class.
|
* The Step Builder class.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class CharacterStepBuilder {
|
public class CharacterStepBuilder {
|
||||||
|
|
||||||
private CharacterStepBuilder() {
|
private CharacterStepBuilder() {
|
||||||
|
@ -2,6 +2,11 @@ package com.iluwatar.stepbuilder;
|
|||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Application test
|
||||||
|
*
|
||||||
|
*/
|
||||||
public class AppTest {
|
public class AppTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user