Package org.eclipse.core.variables

Examples of org.eclipse.core.variables.VariablesPlugin


    private IStringVariableManager getStringVariableManager() {
        if (stringVariableManagerForTests != null) {
            return stringVariableManagerForTests;
        }
        VariablesPlugin variablesPlugin = VariablesPlugin.getDefault();
        if (variablesPlugin != null) {
            return variablesPlugin.getStringVariableManager();
        }
        return null;
    }
View Full Code Here


     *  is to be considered an error (i.e. throw an exception)
     * @return expression with variable references replaced with variable values
     * @throws CoreException if unable to resolve the value of one or more variables
     */
    public String performStringSubstitution(String expression, boolean reportUndefinedVariables) throws CoreException {
        VariablesPlugin plugin = VariablesPlugin.getDefault();
        expression = performPythonpathStringSubstitution(expression);
        expression = plugin.getStringVariableManager().performStringSubstitution(expression, reportUndefinedVariables);
        return expression;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.core.variables.VariablesPlugin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.