org.eclipse.ocl.cst.VariableCS Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2008 IBM Corporation, Zeligsoft Inc., and others.
* 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.html
*
* Contributors:
* IBM - Initial API and implementation
* Zeligsoft - Bug 243976
*
*
*
* $Id: VariableCS.java,v 1.4 2009/12/22 18:42:30 ewillink Exp $
*/
package org.eclipse.ocl.cst;
/**
*
* A representation of the model object 'Variable CS'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.ocl.cst.VariableCS#getName Name}
* - {@link org.eclipse.ocl.cst.VariableCS#getTypeCS Type CS}
* - {@link org.eclipse.ocl.cst.VariableCS#getInitExpression Init Expression}
*
*
*
* @see org.eclipse.ocl.cst.CSTPackage#getVariableCS()
* @model
* @generated
*/
public interface VariableCS
extends CSTNode {
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.eclipse.ocl.cst.CSTPackage#getVariableCS_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.VariableCS#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Type CS' containment reference.
*
*
* If the meaning of the 'Type CS' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type CS' containment reference.
* @see #setTypeCS(TypeCS)
* @see org.eclipse.ocl.cst.CSTPackage#getVariableCS_TypeCS()
* @model containment="true"
* @generated
*/
TypeCS getTypeCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.VariableCS#getTypeCS Type CS}' containment reference.
*
*
* @param value the new value of the 'Type CS' containment reference.
* @see #getTypeCS()
* @generated
*/
void setTypeCS(TypeCS value);
/**
* Returns the value of the 'Init Expression' containment reference.
*
*
* If the meaning of the 'Init Expression' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Init Expression' containment reference.
* @see #setInitExpression(OCLExpressionCS)
* @see org.eclipse.ocl.cst.CSTPackage#getVariableCS_InitExpression()
* @model containment="true"
* @generated
*/
OCLExpressionCS getInitExpression();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.VariableCS#getInitExpression Init Expression}' containment reference.
*
*
* @param value the new value of the 'Init Expression' containment reference.
* @see #getInitExpression()
* @generated
*/
void setInitExpression(OCLExpressionCS value);
} // VariableCS