(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / adapters / ValueProvider.java
index cb5a73039971788d12fa46bf1153e6186bb3f1c5..ace7564df24d586b0f44635f7d33771da1b1a174 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * 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.
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.adapters;
 
 import org.wamblee.system.core.Scope;
 
 /**
- * Interface used to provide values for arguments of methods and constructors. 
+ * Interface used to provide values for arguments of methods and constructors.
  * 
  * @author Erik Brakkee
  */
-public interface ValueProvider {
-
-       Object getValue(Scope aScope);
+interface ValueProvider {
+    Object getValue(Scope aScope);
 }