blob: f0470ff019fd2c709c7027b248711229accaa382 [file] [log] [blame]
/**
* Copyright (c) 2007, 2018 Borland Software Corporation and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*
*
*
* $Id: SwitchExpCS.java,v 1.3 2010/01/29 15:23:41 sboyko Exp $
*/
package org.eclipse.m2m.internal.qvt.oml.cst;
import org.eclipse.emf.common.util.EList;
import org.eclipse.ocl.cst.OCLExpressionCS;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Switch Exp CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.SwitchExpCS#getAlternativePart <em>Alternative Part</em>}</li>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.SwitchExpCS#getElsePart <em>Else Part</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getSwitchExpCS()
* @model
* @generated
*/
public interface SwitchExpCS extends StatementCS {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2007 Borland Software Corporation\r\n\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v2.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v20.html\r\n \r\nContributors:\r\n Borland Software Corporation - initial API and implementation\r\n\r\n"; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Alternative Part</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.m2m.internal.qvt.oml.cst.SwitchAltExpCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Alternative Part</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Alternative Part</em>' containment reference list.
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getSwitchExpCS_AlternativePart()
* @model containment="true" required="true"
* @generated
*/
EList<SwitchAltExpCS> getAlternativePart();
/**
* Returns the value of the '<em><b>Else Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Else Part</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>Else Part</em>' containment reference.
* @see #setElsePart(OCLExpressionCS)
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getSwitchExpCS_ElsePart()
* @model containment="true"
* @generated
*/
OCLExpressionCS getElsePart();
/**
* Sets the value of the '{@link org.eclipse.m2m.internal.qvt.oml.cst.SwitchExpCS#getElsePart <em>Else Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Else Part</em>' containment reference.
* @see #getElsePart()
* @generated
*/
void setElsePart(OCLExpressionCS value);
} // SwitchExpCS