added default container to support classes directly.
[utils] / system / general / src / main / java / org / wamblee / system / core / DefaultScope.java
index 8b0c88efe0e4b746a6d92dd5e9a49d1fe1446ddc..5ec26223b416e842da3239add38c5fb65f803e43 100644 (file)
@@ -65,12 +65,17 @@ public class DefaultScope implements Scope {
 
        @Override
        public void addRuntime(Component aComponent, Object aRuntime) {
-               _runtimes.put(aComponent.getQualifiedName(), aRuntime);
+               _runtimes.put(aComponent.getName(), aRuntime);
        }
 
        @Override
        public Object getRuntime(Component aComponent) {
-               return _runtimes.get(aComponent.getQualifiedName());
+               return _runtimes.get(aComponent.getName());
+       }
+       
+       @Override
+       public Object getRuntime(String aName) {
+           return _runtimes.get(aName);
        }
 
        @Override
@@ -83,7 +88,7 @@ public class DefaultScope implements Scope {
        }
 
        @Override
-       public <T> T retrieveInterfaceImplementation(ProvidedInterface aInterface,
+       public <T> T getInterfaceImplementation(ProvidedInterface aInterface,
                        Class<T> aType) {
                if ( aInterface == null ) { 
                        return null; 
@@ -96,7 +101,7 @@ public class DefaultScope implements Scope {
                ProvidedInterfaceImplementation provided = _provided.get(id);
                if (provided == null) {
                        for (Scope parent : _parents) {
-                               T impl = parent.retrieveInterfaceImplementation(aInterface, aType);
+                               T impl = parent.getInterfaceImplementation(aInterface, aType);
                                if ( impl != null ) { 
                                        return impl; 
                                }