Changed package naming across all examples.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.property;
|
||||
|
||||
import com.iluwatar.Character.Type;
|
||||
import com.iluwatar.property.Character.Type;
|
||||
|
||||
/**
|
||||
* Example of Character instantiation using Property pattern (as concept also known like Prototype inheritance).
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.property;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.property;
|
||||
|
||||
/**
|
||||
* Interface for prototype inheritance
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.property;
|
||||
|
||||
/**
|
||||
* All possible attributes that Character can have
|
@ -1,7 +1,9 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.property;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.iluwatar.property.App;
|
||||
|
||||
public class AppTest {
|
||||
|
||||
@Test
|
Reference in New Issue
Block a user