X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/IVariableLocationExpander.java b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/IVariableLocationExpander.java index 0a79960..c2b6b3c 100644 --- a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/IVariableLocationExpander.java +++ b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/IVariableLocationExpander.java @@ -1,39 +1,42 @@ package net.sourceforge.phpdt.externaltools.variable; /********************************************************************** -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.IPath; /** - * Responsible for expanding a variable into the location - * path of a file or directory. + * Responsible for expanding a variable into the location path of a file or + * directory. *
- * Implementation of this interface will be treated like - * a singleton. That is, only one instance will be created - * per variable extension. - *
- * This interface is not to be extended by clients. Clients - * may implement this interface. + * Implementation of this interface will be treated like a singleton. That is, + * only one instance will be created per variable extension. + *
+ *+ * This interface is not to be extended by clients. Clients may implement this + * interface. *
*/ public interface IVariableLocationExpander { /** - * Returns the path location to a file or directory - * for the given variable tag and value. The path does - * not need to exist. + * Returns the path location to a file or directory for the given variable + * tag and value. The path does not need to exist. * - * @param varTag the variable tag name - * @param varValue the value for the variable - * @param context the context the variable should use to expand itself - * @return theIPath
to a file/directory
- * or null
if not possible
+ * @param varTag
+ * the variable tag name
+ * @param varValue
+ * the value for the variable
+ * @param context
+ * the context the variable should use to expand itself
+ * @return the IPath
to a file/directory or null
+ * if not possible
*/
- public IPath getPath(String varTag, String varValue, ExpandVariableContext context);
+ public IPath getPath(String varTag, String varValue,
+ ExpandVariableContext context);
}