![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.pde.ui.templates.IVariableProvider Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.ui.templates;
/**
* The classes that implement this interface are responsible for providing value
* of variables when asked. Variables are defined by templates and represent the
* current value of the template options set by the users.
*
* @noextend This interface is not intended to be extended by clients.
* @since 2.0
*/
public interface IVariableProvider {
/**
* Returns the value of the variable with a given name.
*
* @param variable
* the name of the variable
* @return the value of the specified variable
*/
public Object getValue(String variable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy