/** * <copyright> * </copyright> * * $Id$ */ package org.jnario; import org.eclipse.xtext.common.types.JvmTypeReference; import org.eclipse.xtext.xbase.XExpression; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Should Throw</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.jnario.ShouldThrow#getType <em>Type</em>}</li> * <li>{@link org.jnario.ShouldThrow#getExpression <em>Expression</em>}</li> * </ul> * </p> * * @see org.jnario.JnarioPackage#getShouldThrow() * @model * @generated */ public interface ShouldThrow extends XExpression { /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</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>Type</em>' containment reference. * @see #setType(JvmTypeReference) * @see org.jnario.JnarioPackage#getShouldThrow_Type() * @model containment="true" required="true" * @generated */ JvmTypeReference getType(); /** * Sets the value of the '{@link org.jnario.ShouldThrow#getType <em>Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(JvmTypeReference value); /** * Returns the value of the '<em><b>Expression</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Expression</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>Expression</em>' containment reference. * @see #setExpression(XExpression) * @see org.jnario.JnarioPackage#getShouldThrow_Expression() * @model containment="true" required="true" * @generated */ XExpression getExpression(); /** * Sets the value of the '{@link org.jnario.ShouldThrow#getExpression <em>Expression</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Expression</em>' containment reference. * @see #getExpression() * @generated */ void setExpression(XExpression value); } // ShouldThrow