Class PathVariableResolver
java.lang.Object
org.eclipse.core.resources.variableresolvers.PathVariableResolver
An interface that variable providers should implement in order
to extends the default path variable list used to resolve relative
locations of linked resources.
- Since:
- 3.6
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
PathVariableResolver
public PathVariableResolver()
-
-
Method Details
-
getVariableNames
This method can return a list of possible variables resolved by this resolver.This default implementation always returns
null
. Subclasses should override to provide custom extensions.- Parameters:
variable
- The current variable name.resource
- The resource that the variable is being resolved for.- Returns:
- the list of supported variables
-
getValue
Returns a variable value- Parameters:
variable
- The current variable name.resource
- The resource that the variable is being resolved for.- Returns:
- the variable value.
-