/** */ package net.certware.evidence.hugin.netDSL; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Expression</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.hugin.netDSL.Expression#getOp <em>Op</em>}</li> * </ul> * </p> * * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getExpression() * @model * @generated */ public interface Expression extends EObject { /** * Returns the value of the '<em><b>Op</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Op</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Op</em>' attribute. * @see #setOp(String) * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getExpression_Op() * @model * @generated */ String getOp(); /** * Sets the value of the '{@link net.certware.evidence.hugin.netDSL.Expression#getOp <em>Op</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Op</em>' attribute. * @see #getOp() * @generated */ void setOp(String value); } // Expression