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

org.openxma.dsl.dom.model.WhenClause Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id$
 */
package org.openxma.dsl.dom.model;

import org.eclipse.emf.ecore.EObject;

/**
 * 
 * A representation of the model object 'When Clause'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.WhenClause#getWhenExpression When Expression}
  • *
  • {@link org.openxma.dsl.dom.model.WhenClause#getThenExpression Then Expression}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getWhenClause() * @model * @generated */ public interface WhenClause extends EObject { /** * Returns the value of the 'When Expression' containment reference. * *

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

* * @return the value of the 'When Expression' containment reference. * @see #setWhenExpression(Expression) * @see org.openxma.dsl.dom.DomPackage#getWhenClause_WhenExpression() * @model containment="true" * @generated */ Expression getWhenExpression(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.WhenClause#getWhenExpression When Expression}' containment reference. * * * @param value the new value of the 'When Expression' containment reference. * @see #getWhenExpression() * @generated */ void setWhenExpression(Expression value); /** * Returns the value of the 'Then Expression' containment reference. * *

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

* * @return the value of the 'Then Expression' containment reference. * @see #setThenExpression(Expression) * @see org.openxma.dsl.dom.DomPackage#getWhenClause_ThenExpression() * @model containment="true" * @generated */ Expression getThenExpression(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.WhenClause#getThenExpression Then Expression}' containment reference. * * * @param value the new value of the 'Then Expression' containment reference. * @see #getThenExpression() * @generated */ void setThenExpression(Expression value); } // WhenClause




© 2015 - 2024 Weber Informatics LLC | Privacy Policy