copyright messages updated in all java filees.
[utils] / system / spring / src / main / java / org / wamblee / system / spring / StringResource.java
index 5429d6cd715dd18d5e65dc74d6959eec3fd920d2..5f2597c1642a4aebf0fea08138592ee5e72f5ffe 100644 (file)
@@ -1,18 +1,18 @@
 /*
- * Copyright 2007 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.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */
+ */ 
 package org.wamblee.system.spring;
 
 import org.springframework.core.io.Resource;
@@ -24,114 +24,57 @@ import java.io.InputStream;
 
 import java.net.URL;
 
-
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
  */
 class StringResource implements Resource {
-    /**
-     * DOCUMENT ME!
-     */
     private String _value;
 
-/**
+    /**
      * Creates a new StringResource object.
-     *
-     * @param aValue DOCUMENT ME!
+     * 
      */
     public StringResource(String aValue) {
         _value = aValue;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aRelativePath DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     @Override
-    public Resource createRelative(String aRelativePath)
-        throws IOException {
+    public Resource createRelative(String aRelativePath) throws IOException {
         throw new IOException("No relative resource possible");
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     public boolean exists() {
         return false;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     public String getDescription() {
         return "Properties of a spring component";
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     @Override
     public File getFile() throws IOException {
         throw new IOException();
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     public String getFilename() {
         return "springcomponent.properties";
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     @Override
     public URL getURL() throws IOException {
         throw new IOException();
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     public boolean isOpen() {
         return false;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     @Override
     public InputStream getInputStream() throws IOException {
         return new ByteArrayInputStream(_value.getBytes());