/** * Copyright (c) 2015 Obeo. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.htm */ package org.eclipse.sirius.expression; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Variable</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Represents a variable. * <!-- end-model-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.sirius.expression.Variable#getName <em>Name</em>}</li> * <li>{@link org.eclipse.sirius.expression.Variable#getDocumentation <em>Documentation</em>}</li> * </ul> * * @see org.eclipse.sirius.expression.ExpressionPackage#getVariable() * @model * @generated */ public interface Variable extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Defines the name of the varriable. * <!-- end-model-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.sirius.expression.ExpressionPackage#getVariable_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.sirius.expression.Variable#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Documentation</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Defines the documentation of the variables. * <!-- end-model-doc --> * @return the value of the '<em>Documentation</em>' attribute. * @see #setDocumentation(String) * @see org.eclipse.sirius.expression.ExpressionPackage#getVariable_Documentation() * @model * @generated */ String getDocumentation(); /** * Sets the value of the '{@link org.eclipse.sirius.expression.Variable#getDocumentation <em>Documentation</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Documentation</em>' attribute. * @see #getDocumentation() * @generated */ void setDocumentation(String value); } // Variable