copyright messages updated in all java filees.
[utils] / system / general / src / main / java / org / wamblee / system / adapters / ValueProvider.java
index 03eac1e9df351477ee04df711158f2e1a278bef3..d8f802386671436e11ad139b8932553d6245565e 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.
@@ -17,7 +17,11 @@ package org.wamblee.system.adapters;
 
 import org.wamblee.system.core.Scope;
 
-public interface ValueProvider {
-
-       Object getValue(Scope aScope);
+/**
+ * Interface used to provide values for arguments of methods and constructors.
+ * 
+ * @author Erik Brakkee
+ */
+interface ValueProvider {
+    Object getValue(Scope aScope);
 }