Changed package naming across all examples.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
/**
|
||||
*
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public abstract class Beast extends Prototype {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public class ElfBeast extends Beast {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public class ElfMage extends Mage {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public class ElfWarlord extends Warlord {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
/**
|
||||
*
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
/**
|
||||
*
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public abstract class Mage extends Prototype {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public class OrcBeast extends Beast {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public class OrcMage extends Mage {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public class OrcWarlord extends Warlord {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public abstract class Prototype implements Cloneable {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
public abstract class Warlord extends Prototype {
|
||||
|
@ -1,7 +1,9 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.prototype;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.iluwatar.prototype.App;
|
||||
|
||||
public class AppTest {
|
||||
|
||||
@Test
|
Reference in New Issue
Block a user