blob: 972d733a03adafb5b9372b32fe7f5faa3fceabf6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.common.interpreter.api;
import java.util.Map;
/**
* The variable manager is used to handle the state of the variables.
*
* @author sbegaudeau
*/
public interface IVariableManager {
/**
* Puts the new value of the variable.
*
* @param name
* The name of the variable
* @param value
* The value of the variable
* @return The previous value of the variable or <code>null</code> otherwise
*/
Object put(String name, Object value);
/**
* Returns the variables.
*
* @return The variables
*/
Map<String, Object> getVariables();
/**
* Creates a child {@link IVariableManager}.
*
* @return A child {@link IVariableManager}
*/
IVariableManager createChild();
/**
* Clear the variable manager and its children.
*/
void clear();
}