blob: eb42a9e900239a7fb16f0bae3d5095dc084b208b [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010, 2012 E.D.Willink 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: OclMessageArgCS.java,v 1.2 2010/05/03 05:58:33 ewillink Exp $
*/
package org.eclipse.ocl.examples.xtext.completeocl.completeOCLCST;
import org.eclipse.ocl.examples.xtext.base.baseCST.TypeCS;
import org.eclipse.ocl.examples.xtext.essentialocl.essentialOCLCST.ExpCS;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ocl Message Arg CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext.completeocl.completeOCLCST.OCLMessageArgCS#getType <em>Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ocl.examples.xtext.completeocl.completeOCLCST.CompleteOCLCSTPackage#getOCLMessageArgCS()
* @model
* @generated
*/
public interface OCLMessageArgCS extends ExpCS {
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(TypeCS)
* @see org.eclipse.ocl.examples.xtext.completeocl.completeOCLCST.CompleteOCLCSTPackage#getOCLMessageArgCS_Type()
* @model containment="true"
* @generated
*/
TypeCS getType();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.completeocl.completeOCLCST.OCLMessageArgCS#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(TypeCS value);
} // OclMessageArgCS