/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Shift Op</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.ShiftOp#getValue <em>Value</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.ShiftOp#getDistance <em>Distance</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getShiftOp() * @model abstract="true" * @generated */ public interface ShiftOp extends Expression { /** * Returns the value of the '<em><b>Value</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</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>Value</em>' containment reference. * @see #setValue(Expression) * @see net.sf.etl.samples.ej.ast.AstPackage#getShiftOp_Value() * @model containment="true" resolveProxies="false" * @generated */ Expression getValue(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.ShiftOp#getValue <em>Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' containment reference. * @see #getValue() * @generated */ void setValue(Expression value); /** * Returns the value of the '<em><b>Distance</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Distance</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>Distance</em>' containment reference. * @see #setDistance(Expression) * @see net.sf.etl.samples.ej.ast.AstPackage#getShiftOp_Distance() * @model containment="true" resolveProxies="false" * @generated */ Expression getDistance(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.ShiftOp#getDistance <em>Distance</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Distance</em>' containment reference. * @see #getDistance() * @generated */ void setDistance(Expression value); } // ShiftOp