forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iluwatar#108 Consistent package naming throughout the examples
- Loading branch information
Showing
128 changed files
with
939 additions
and
849 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...egate/src/main/java/com/iluwatar/App.java → ...a/com/iluwatar/business/delegate/App.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...n/java/com/iluwatar/BusinessDelegate.java → ...r/business/delegate/BusinessDelegate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...ain/java/com/iluwatar/BusinessLookup.java → ...tar/business/delegate/BusinessLookup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...in/java/com/iluwatar/BusinessService.java → ...ar/business/delegate/BusinessService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...te/src/main/java/com/iluwatar/Client.java → ...om/iluwatar/business/delegate/Client.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...rc/main/java/com/iluwatar/EjbService.java → ...luwatar/business/delegate/EjbService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...rc/main/java/com/iluwatar/JmsService.java → ...luwatar/business/delegate/JmsService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...c/main/java/com/iluwatar/ServiceType.java → ...uwatar/business/delegate/ServiceType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar; | ||
package com.iluwatar.business.delegate; | ||
|
||
/** | ||
* | ||
|
28 changes: 14 additions & 14 deletions
28
...java/com/iluwatar/objectpool/AppTest.java → ...m/iluwatar/business/delegate/AppTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.iluwatar.objectpool; | ||
|
||
import org.junit.Test; | ||
|
||
import com.iluwatar.objectpool.App; | ||
|
||
public class AppTest { | ||
|
||
@Test | ||
public void test() { | ||
String[] args = {}; | ||
App.main(args); | ||
} | ||
} | ||
package com.iluwatar.business.delegate; | ||
|
||
import org.junit.Test; | ||
|
||
import com.iluwatar.business.delegate.App; | ||
|
||
public class AppTest { | ||
|
||
@Test | ||
public void test() { | ||
String[] args = {}; | ||
App.main(args); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...r/dependencyinjection/AdvancedWizard.java → .../dependency/injection/AdvancedWizard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...com/iluwatar/dependencyinjection/App.java → ...om/iluwatar/dependency/injection/App.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...atar/dependencyinjection/GuiceWizard.java → ...tar/dependency/injection/GuiceWizard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...r/dependencyinjection/OldTobyTobacco.java → .../dependency/injection/OldTobyTobacco.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...dependencyinjection/RivendellTobacco.java → ...ependency/injection/RivendellTobacco.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...encyinjection/SecondBreakfastTobacco.java → ...ncy/injection/SecondBreakfastTobacco.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...tar/dependencyinjection/SimpleWizard.java → ...ar/dependency/injection/SimpleWizard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...iluwatar/dependencyinjection/Tobacco.java → ...luwatar/dependency/injection/Tobacco.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
2 changes: 1 addition & 1 deletion
2
...ar/dependencyinjection/TobaccoModule.java → ...r/dependency/injection/TobaccoModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../iluwatar/dependencyinjection/Wizard.java → ...iluwatar/dependency/injection/Wizard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.iluwatar.dependencyinjection; | ||
package com.iluwatar.dependency.injection; | ||
|
||
/** | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
...iluwatar/dependencyinjection/AppTest.java → ...luwatar/dependency/injection/AppTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...om/iluwatar/doublecheckedlocking/App.java → ...m/iluwatar/doublechecked/locking/App.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...watar/doublecheckedlocking/Inventory.java → ...atar/doublechecked/locking/Inventory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...m/iluwatar/doublecheckedlocking/Item.java → .../iluwatar/doublechecked/locking/Item.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
...a/com/iluwatar/factorymethod/AppTest.java → ...uwatar/doublechecked/locking/AppTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.iluwatar.factorymethod; | ||
|
||
import org.junit.Test; | ||
|
||
import com.iluwatar.factorymethod.App; | ||
|
||
public class AppTest { | ||
|
||
@Test | ||
public void test() { | ||
String[] args = {}; | ||
App.main(args); | ||
} | ||
} | ||
package com.iluwatar.doublechecked.locking; | ||
|
||
import org.junit.Test; | ||
|
||
import com.iluwatar.doublechecked.locking.App; | ||
|
||
public class AppTest { | ||
|
||
@Test | ||
public void test() { | ||
String[] args = {}; | ||
App.main(args); | ||
} | ||
} |
Oops, something went wrong.