mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 18:59:15 +00:00
#108 Consistent package naming throughout the examples
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
package com.iluwatar.dependency.injection;
|
||||
|
||||
import com.google.inject.AbstractModule;
|
||||
|
||||
/**
|
||||
*
|
||||
* Guice module for binding certain concrete Tobacco implementation.
|
||||
*
|
||||
*/
|
||||
public class TobaccoModule extends AbstractModule {
|
||||
|
||||
@Override
|
||||
protected void configure() {
|
||||
bind(Tobacco.class).to(RivendellTobacco.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user