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

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

/**
 * 
 * A representation of the model object 'Loop Exp CS'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.ocl.cst.LoopExpCS#getVariable1 Variable1}
  • *
  • {@link org.eclipse.ocl.cst.LoopExpCS#getVariable2 Variable2}
  • *
  • {@link org.eclipse.ocl.cst.LoopExpCS#getBody Body}
  • *
*

* * @see org.eclipse.ocl.cst.CSTPackage#getLoopExpCS() * @model * @generated */ public interface LoopExpCS extends CallExpCS { /** * Returns the value of the 'Variable1' containment reference. * *

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

* * @return the value of the 'Variable1' containment reference. * @see #setVariable1(VariableCS) * @see org.eclipse.ocl.cst.CSTPackage#getLoopExpCS_Variable1() * @model containment="true" * @generated */ VariableCS getVariable1(); /** * Sets the value of the '{@link org.eclipse.ocl.cst.LoopExpCS#getVariable1 Variable1}' containment reference. * * * @param value the new value of the 'Variable1' containment reference. * @see #getVariable1() * @generated */ void setVariable1(VariableCS value); /** * Returns the value of the 'Variable2' containment reference. * *

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

* * @return the value of the 'Variable2' containment reference. * @see #setVariable2(VariableCS) * @see org.eclipse.ocl.cst.CSTPackage#getLoopExpCS_Variable2() * @model containment="true" * @generated */ VariableCS getVariable2(); /** * Sets the value of the '{@link org.eclipse.ocl.cst.LoopExpCS#getVariable2 Variable2}' containment reference. * * * @param value the new value of the 'Variable2' containment reference. * @see #getVariable2() * @generated */ void setVariable2(VariableCS value); /** * Returns the value of the 'Body' containment reference. * *

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

* * @return the value of the 'Body' containment reference. * @see #setBody(OCLExpressionCS) * @see org.eclipse.ocl.cst.CSTPackage#getLoopExpCS_Body() * @model containment="true" * @generated */ OCLExpressionCS getBody(); /** * Sets the value of the '{@link org.eclipse.ocl.cst.LoopExpCS#getBody Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(OCLExpressionCS value); } // LoopExpCS




© 2015 - 2024 Weber Informatics LLC | Privacy Policy