X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariable.java b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariable.java index e3fc7b2..da01310 100644 --- a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariable.java +++ b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/ArgumentVariable.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.variable.ExpandVariableContext; import net.sourceforge.phpdt.externaltools.variable.IVariableTextExpander; @@ -19,23 +19,26 @@ import org.eclipse.core.runtime.IConfigurationElement; */ public final class ArgumentVariable extends ExternalToolVariable { private static final DefaultTextExpander defaultExpander = new DefaultTextExpander(); - + private IVariableTextExpander expander = null; /** * Creates an argument variable * - * @param tag the variable tag - * @param description a short description of what the variable will expand to - * @param element the configuration element + * @param tag + * the variable tag + * @param description + * a short description of what the variable will expand to + * @param element + * the configuration element */ - /*package*/ ArgumentVariable(String tag, String description, IConfigurationElement element) { + /* package */ArgumentVariable(String tag, String description, + IConfigurationElement element) { super(tag, description, element); } /** - * Returns the object that can expand the variable - * as text. + * Returns the object that can expand the variable as text. */ public IVariableTextExpander getExpander() { if (expander == null) { @@ -50,16 +53,17 @@ public final class ArgumentVariable extends ExternalToolVariable { return expander; } - /** - * Default variable text expander implementation which does - * not expand variables, but just returns null. - */ - private static final class DefaultTextExpander implements IVariableTextExpander { - /* (non-Javadoc) - * Method declared on IVariableTextExpander. + * Default variable text expander implementation which does not expand + * variables, but just returns null. + */ + private static final class DefaultTextExpander implements + IVariableTextExpander { + /* + * (non-Javadoc) Method declared on IVariableTextExpander. */ - public String getText(String varTag, String varValue, ExpandVariableContext context) { + public String getText(String varTag, String varValue, + ExpandVariableContext context) { return null; } }