X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariableRegistry.java b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariableRegistry.java index 5e02868..8c9a5cf 100644 --- a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariableRegistry.java +++ b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariableRegistry.java @@ -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 net.sourceforge.phpdt.externaltools.model.IExternalToolConstants; @@ -26,13 +26,13 @@ public class ArgumentVariableRegistry extends ExternalToolVariableRegistry { } /** - * Returns the argument variable for the given tag - * or null if none. + * Returns the argument variable for the given tag or null if + * none. */ public ArgumentVariable getArgumentVariable(String tag) { return (ArgumentVariable) findVariable(tag); } - + /** * Returns the list of argument variables in the registry. */ @@ -41,11 +41,12 @@ public class ArgumentVariableRegistry 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 ArgumentVariable(tag, description, element); } }