org.eclipse.xtext.xbase.XIfExpression 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 'XIf Expression'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.xtext.xbase.XIfExpression#getIf If}
* - {@link org.eclipse.xtext.xbase.XIfExpression#getThen Then}
* - {@link org.eclipse.xtext.xbase.XIfExpression#getElse Else}
*
*
*
* @see org.eclipse.xtext.xbase.XbasePackage#getXIfExpression()
* @model
* @generated
*/
public interface XIfExpression extends XExpression
{
/**
* Returns the value of the 'If' containment reference.
*
*
* If the meaning of the 'If' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'If' containment reference.
* @see #setIf(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXIfExpression_If()
* @model containment="true"
* @generated
*/
XExpression getIf();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XIfExpression#getIf If}' containment reference.
*
*
* @param value the new value of the 'If' containment reference.
* @see #getIf()
* @generated
*/
void setIf(XExpression value);
/**
* Returns the value of the 'Then' containment reference.
*
*
* If the meaning of the 'Then' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Then' containment reference.
* @see #setThen(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXIfExpression_Then()
* @model containment="true"
* @generated
*/
XExpression getThen();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XIfExpression#getThen Then}' containment reference.
*
*
* @param value the new value of the 'Then' containment reference.
* @see #getThen()
* @generated
*/
void setThen(XExpression value);
/**
* Returns the value of the 'Else' containment reference.
*
*
* If the meaning of the 'Else' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Else' containment reference.
* @see #setElse(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXIfExpression_Else()
* @model containment="true"
* @generated
*/
XExpression getElse();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XIfExpression#getElse Else}' containment reference.
*
*
* @param value the new value of the 'Else' containment reference.
* @see #getElse()
* @generated
*/
void setElse(XExpression value);
} // XIfExpression
© 2015 - 2025 Weber Informatics LLC | Privacy Policy