X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/RefreshScopeVariable.java b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/RefreshScopeVariable.java index ea634ec..14f2866 100644 --- a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/RefreshScopeVariable.java +++ b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/registry/RefreshScopeVariable.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.IVariableResourceExpander; @@ -20,23 +20,26 @@ import org.eclipse.core.runtime.IConfigurationElement; */ public final class RefreshScopeVariable extends ExternalToolVariable { private static final DefaultResourceExpander defaultExpander = new DefaultResourceExpander(); - + private IVariableResourceExpander expander = null; /** * Creates a refresh scope 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*/ RefreshScopeVariable(String tag, String description, IConfigurationElement element) { + /* package */RefreshScopeVariable(String tag, String description, + IConfigurationElement element) { super(tag, description, element); } /** - * Returns the object that can expand the variable - * as resources. + * Returns the object that can expand the variable as resources. */ public IVariableResourceExpander getExpander() { if (expander == null) { @@ -47,16 +50,17 @@ public final class RefreshScopeVariable extends ExternalToolVariable { return expander; } - /** - * Default variable resource expander implementation which does - * not expand variables, but just returns null. - */ - private static final class DefaultResourceExpander implements IVariableResourceExpander { - /* (non-Javadoc) - * Method declared on IVariableResourceExpander. + * Default variable resource expander implementation which does not expand + * variables, but just returns null. + */ + private static final class DefaultResourceExpander implements + IVariableResourceExpander { + /* + * (non-Javadoc) Method declared on IVariableResourceExpander. */ - public IResource[] getResources(String varTag, String varValue, ExpandVariableContext context) { + public IResource[] getResources(String varTag, String varValue, + ExpandVariableContext context) { return null; } }