X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcore%2FDefaultScope.java;h=d3f62a7b88404a3ae6612422ec8b28c4d5114094;hb=dec278a67997ea8e85d10662e31548afd8890ed3;hp=7cfd2cab390266ae169a13da6efcb630e970e9cd;hpb=ddd261f331280640c5b53c7128230b629ebcd268;p=utils diff --git a/system/general/src/main/java/org/wamblee/system/core/DefaultScope.java b/system/general/src/main/java/org/wamblee/system/core/DefaultScope.java index 7cfd2cab..d3f62a7b 100644 --- a/system/general/src/main/java/org/wamblee/system/core/DefaultScope.java +++ b/system/general/src/main/java/org/wamblee/system/core/DefaultScope.java @@ -1,12 +1,12 @@ /* - * Copyright 2008 the original author or authors. - * + * Copyright 2005-2010 the original author or authors. + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,173 +22,97 @@ import java.util.HashMap; import java.util.List; import java.util.Map; - /** - * DOCUMENT ME! - * + * * @author $author$ * @version $Revision$ */ public class DefaultScope implements Scope { - /** - * DOCUMENT ME! - */ private List parents; - /** - * DOCUMENT ME! - */ private Map properties; - /** - * DOCUMENT ME! - */ private Map runtimes; - /** - * DOCUMENT ME! - */ private Map provided; - /** - * DOCUMENT ME! - */ private List externallyProvided; -/** + /** * Creates a new DefaultScope object. - * - * @param aExternallyProvided DOCUMENT ME! + * */ public DefaultScope(List aExternallyProvided) { this(aExternallyProvided.toArray(new ProvidedInterface[0])); } -/** + /** * Creates a new DefaultScope object. - * - * @param aExternallyProvided DOCUMENT ME! + * */ public DefaultScope(ProvidedInterface[] aExternallyProvided) { this(aExternallyProvided, new ArrayList()); } -/** + /** * Creates a new DefaultScope object. - * - * @param aExternallyProvided DOCUMENT ME! - * @param aParent DOCUMENT ME! + * */ public DefaultScope(ProvidedInterface[] aExternallyProvided, Scope aParent) { this(aExternallyProvided, Arrays.asList(new Scope[] { aParent })); } -/** + /** * Creates a new DefaultScope object. - * - * @param aExternallyProvided DOCUMENT ME! - * @param aParent DOCUMENT ME! + * */ public DefaultScope(ProvidedInterface[] aExternallyProvided, List aParent) { - parents = new ArrayList(aParent); - properties = new HashMap(); - runtimes = new HashMap(); - provided = new HashMap(); - externallyProvided = new ArrayList(); + parents = new ArrayList(aParent); + properties = new HashMap(); + runtimes = new HashMap(); + provided = new HashMap(); + externallyProvided = new ArrayList(); externallyProvided.addAll(Arrays.asList(aExternallyProvided)); } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public List getProvidedInterfaces() { return Collections.unmodifiableList(externallyProvided); } - /** - * DOCUMENT ME! - * - * @param aKey DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public Object get(String aKey) { return properties.get(aKey); } - /** - * DOCUMENT ME! - * - * @param aKey DOCUMENT ME! - * @param aValue DOCUMENT ME! - */ @Override public void put(String aKey, Object aValue) { properties.put(aKey, aValue); } - /** - * DOCUMENT ME! - * - * @param aComponent DOCUMENT ME! - * @param aRuntime DOCUMENT ME! - */ @Override public void addRuntime(Component aComponent, Object aRuntime) { runtimes.put(aComponent.getName(), aRuntime); } - /** - * DOCUMENT ME! - * - * @param aComponent DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public Object getRuntime(Component aComponent) { return runtimes.get(aComponent.getName()); } - /** - * DOCUMENT ME! - * - * @param aName DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public Object getRuntime(String aName) { return runtimes.get(aName); } - /** - * DOCUMENT ME! - * - * @param aInterface DOCUMENT ME! - * @param aImplementation DOCUMENT ME! - */ @Override synchronized public void publishInterface(ProvidedInterface aInterface, Object aImplementation) { - provided.put(aInterface, - new ProvidedInterfaceImplementation(aInterface, aImplementation)); + provided.put(aInterface, new ProvidedInterfaceImplementation( + aInterface, aImplementation)); } - /** - * DOCUMENT ME! - * - * @param DOCUMENT ME! - * @param aInterface DOCUMENT ME! - * @param aType DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public T getInterfaceImplementation(ProvidedInterface aInterface, Class aType) { @@ -208,8 +132,7 @@ public class DefaultScope implements Scope { } return null; - } else { - return providedIntf.getImplementation(aType); } + return providedIntf.getImplementation(aType); } }