All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.ocl.cst.DefExpressionCS 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: DefExpressionCS.java,v 1.4 2009/12/22 18:42:30 ewillink Exp $
 */
package org.eclipse.ocl.cst;

/**
 * 
 * A representation of the model object 'Def Expression CS'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.ocl.cst.DefExpressionCS#getOperationCS Operation CS}
  • *
  • {@link org.eclipse.ocl.cst.DefExpressionCS#getVariableCS Variable CS}
  • *
  • {@link org.eclipse.ocl.cst.DefExpressionCS#getExpressionCS Expression CS}
  • *
*

* * @see org.eclipse.ocl.cst.CSTPackage#getDefExpressionCS() * @model * @generated */ public interface DefExpressionCS extends CSTNode { /** * Returns the value of the 'Operation CS' containment reference. * *

* If the meaning of the 'Operation CS' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Operation CS' containment reference. * @see #setOperationCS(OperationCS) * @see org.eclipse.ocl.cst.CSTPackage#getDefExpressionCS_OperationCS() * @model containment="true" * @generated */ OperationCS getOperationCS(); /** * Sets the value of the '{@link org.eclipse.ocl.cst.DefExpressionCS#getOperationCS Operation CS}' containment reference. * * * @param value the new value of the 'Operation CS' containment reference. * @see #getOperationCS() * @generated */ void setOperationCS(OperationCS value); /** * Returns the value of the 'Variable CS' containment reference. * *

* If the meaning of the 'Variable CS' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Variable CS' containment reference. * @see #setVariableCS(VariableCS) * @see org.eclipse.ocl.cst.CSTPackage#getDefExpressionCS_VariableCS() * @model containment="true" * @generated */ VariableCS getVariableCS(); /** * Sets the value of the '{@link org.eclipse.ocl.cst.DefExpressionCS#getVariableCS Variable CS}' containment reference. * * * @param value the new value of the 'Variable CS' containment reference. * @see #getVariableCS() * @generated */ void setVariableCS(VariableCS value); /** * Returns the value of the 'Expression CS' containment reference. * *

* If the meaning of the 'Expression CS' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Expression CS' containment reference. * @see #setExpressionCS(OCLExpressionCS) * @see org.eclipse.ocl.cst.CSTPackage#getDefExpressionCS_ExpressionCS() * @model containment="true" * extendedMetaData="name='oclExpressionCS'" * @generated */ OCLExpressionCS getExpressionCS(); /** * Sets the value of the '{@link org.eclipse.ocl.cst.DefExpressionCS#getExpressionCS Expression CS}' containment reference. * * * @param value the new value of the 'Expression CS' containment reference. * @see #getExpressionCS() * @generated */ void setExpressionCS(OCLExpressionCS value); } // DefExpressionCS




© 2015 - 2024 Weber Informatics LLC | Privacy Policy