
org.eclipse.xtext.xbase.XAbstractWhileExpression Maven / Gradle / Ivy
/**
* Copyright (c) 2011 itemis AG (http://www.itemis.eu) 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
*/
package org.eclipse.xtext.xbase;
/**
*
* A representation of the model object 'XAbstract While Expression'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.xtext.xbase.XAbstractWhileExpression#getPredicate Predicate}
* - {@link org.eclipse.xtext.xbase.XAbstractWhileExpression#getBody Body}
*
*
*
* @see org.eclipse.xtext.xbase.XbasePackage#getXAbstractWhileExpression()
* @model abstract="true"
* @generated
*/
public interface XAbstractWhileExpression extends XExpression
{
/**
* Returns the value of the 'Predicate' containment reference.
*
*
* If the meaning of the 'Predicate' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Predicate' containment reference.
* @see #setPredicate(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXAbstractWhileExpression_Predicate()
* @model containment="true"
* @generated
*/
XExpression getPredicate();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XAbstractWhileExpression#getPredicate Predicate}' containment reference.
*
*
* @param value the new value of the 'Predicate' containment reference.
* @see #getPredicate()
* @generated
*/
void setPredicate(XExpression 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(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXAbstractWhileExpression_Body()
* @model containment="true"
* @generated
*/
XExpression getBody();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XAbstractWhileExpression#getBody Body}' containment reference.
*
*
* @param value the new value of the 'Body' containment reference.
* @see #getBody()
* @generated
*/
void setBody(XExpression value);
} // XAbstractWhileExpression
© 2015 - 2025 Weber Informatics LLC | Privacy Policy