org.eclipse.ocl.cst.OCLMessageArgCS 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: OCLMessageArgCS.java,v 1.4 2009/12/22 18:42:30 ewillink Exp $
*/
package org.eclipse.ocl.cst;
/**
*
* A representation of the model object 'OCL Message Arg CS'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.ocl.cst.OCLMessageArgCS#getTypeCS Type CS}
* - {@link org.eclipse.ocl.cst.OCLMessageArgCS#getExpression Expression}
*
*
*
* @see org.eclipse.ocl.cst.CSTPackage#getOCLMessageArgCS()
* @model extendedMetaData="name='OclMessageArgCS'"
* @generated
*/
public interface OCLMessageArgCS
extends CSTNode {
/**
* 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#getOCLMessageArgCS_TypeCS()
* @model containment="true"
* @generated
*/
TypeCS getTypeCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.OCLMessageArgCS#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 'Expression' containment reference.
*
*
* If the meaning of the 'Expression' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Expression' containment reference.
* @see #setExpression(OCLExpressionCS)
* @see org.eclipse.ocl.cst.CSTPackage#getOCLMessageArgCS_Expression()
* @model containment="true"
* extendedMetaData="name='oclExpression'"
* @generated
*/
OCLExpressionCS getExpression();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.OCLMessageArgCS#getExpression Expression}' containment reference.
*
*
* @param value the new value of the 'Expression' containment reference.
* @see #getExpression()
* @generated
*/
void setExpression(OCLExpressionCS value);
} // OCLMessageArgCS