checkstyle
[utils] / system / general / src / main / java / org / wamblee / system / core / ProvidedInterfaceImplementation.java
index bce21aaadbf6a154dca090dfbad2d50f7836cd65..61c80c7aeacc17680d622c2acab655e368e9cbdb 100644 (file)
@@ -21,9 +21,9 @@ package org.wamblee.system.core;
  * @author Erik Brakkee
  */
 class ProvidedInterfaceImplementation {
-    private ProvidedInterface _provided;
+    private ProvidedInterface provided;
 
-    private Object _implementation;
+    private Object implementation;
 
     /**
      * Constructs the object.
@@ -35,8 +35,8 @@ class ProvidedInterfaceImplementation {
      */
     public ProvidedInterfaceImplementation(ProvidedInterface aProvided,
         Object aImplementation) {
-        _provided = aProvided;
-        _implementation = aImplementation;
+        provided = aProvided;
+        implementation = aImplementation;
     }
 
     /**
@@ -44,7 +44,7 @@ class ProvidedInterfaceImplementation {
      * @return The provided interface.
      */
     public ProvidedInterface getProvided() {
-        return _provided;
+        return provided;
     }
 
     /**
@@ -57,6 +57,6 @@ class ProvidedInterfaceImplementation {
      * @return Implementation.
      */
     public <T> T getImplementation(Class<T> aType) {
-        return (T) _implementation;
+        return (T) implementation;
     }
 }