A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / registry / PathLocationVariableRegistry.java
index 1a2fa3e..70fc909 100644 (file)
@@ -1,13 +1,13 @@
 package net.sourceforge.phpdt.externaltools.internal.registry;
 
 /**********************************************************************
-Copyright (c) 2002 IBM Corp. and others. All rights reserved.
-This file is made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-�
-Contributors:
-**********************************************************************/
+ Copyright (c) 2002 IBM Corp. and others. All rights reserved.
+ This file is made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+ �
+ Contributors:
+ **********************************************************************/
 
 import org.eclipse.core.runtime.IConfigurationElement;
 
@@ -24,13 +24,13 @@ public class PathLocationVariableRegistry extends ExternalToolVariableRegistry {
        }
 
        /**
-        * Returns the path location variable for the given tag
-        * or <code>null</code> if none.
+        * Returns the path location variable for the given tag or <code>null</code>
+        * if none.
         */
        public PathLocationVariable getPathLocationVariable(String tag) {
                return (PathLocationVariable) findVariable(tag);
        }
-       
+
        /**
         * Returns the list of path location variables in the registry.
         */
@@ -39,11 +39,12 @@ public class PathLocationVariableRegistry extends ExternalToolVariableRegistry {
                copyVariables(results);
                return results;
        }
-       
-       /* (non-Javadoc)
-        * Method declared on ExternalToolVariableRegistry.
+
+       /*
+        * (non-Javadoc) Method declared on ExternalToolVariableRegistry.
         */
-       protected ExternalToolVariable newVariable(String tag, String description, IConfigurationElement element) {
+       protected ExternalToolVariable newVariable(String tag, String description,
+                       IConfigurationElement element) {
                return new PathLocationVariable(tag, description, element);
        }
 }