X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcore%2FProvidedInterfaceImplementation.java;h=73dcc65247484fdddf7e3d0a685421a5008d92d0;hb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;hp=998e8d6bd3eb9704a7393a4fb4c9ca37d4de807e;hpb=89c06d4d52b46c154128c97d6e758fa1f4fc7a6e;p=utils diff --git a/system/general/src/main/java/org/wamblee/system/core/ProvidedInterfaceImplementation.java b/system/general/src/main/java/org/wamblee/system/core/ProvidedInterfaceImplementation.java index 998e8d6b..73dcc652 100644 --- a/system/general/src/main/java/org/wamblee/system/core/ProvidedInterfaceImplementation.java +++ b/system/general/src/main/java/org/wamblee/system/core/ProvidedInterfaceImplementation.java @@ -17,34 +17,30 @@ package org.wamblee.system.core; /** * Represents a provided interface together with its implementation. - * + * * @author Erik Brakkee */ class ProvidedInterfaceImplementation { - /** - * DOCUMENT ME! - */ private ProvidedInterface _provided; - /** - * DOCUMENT ME! - */ private Object _implementation; -/** - * Constructs the object. - * @param aProvided Provided interface. - * @param aImplementation Implementation. - */ + /** + * Constructs the object. + * + * @param aProvided + * Provided interface. + * @param aImplementation + * Implementation. + */ public ProvidedInterfaceImplementation(ProvidedInterface aProvided, Object aImplementation) { - _provided = aProvided; - _implementation = aImplementation; + _provided = aProvided; + _implementation = aImplementation; } /** - * DOCUMENT ME! - * + * * @return The provided interface. */ public ProvidedInterface getProvided() { @@ -52,11 +48,12 @@ class ProvidedInterfaceImplementation { } /** - * DOCUMENT ME! - * - * @param Expected type of the implementation. - * @param aType Type of the implementation. - * + * + * @param + * Expected type of the implementation. + * @param aType + * Type of the implementation. + * * @return Implementation. */ public T getImplementation(Class aType) {