/** */ package com.github.lbroudoux.dsl.eip; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Filter</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.github.lbroudoux.dsl.eip.Filter#getExpression <em>Expression</em>}</li> * </ul> * </p> * * @see com.github.lbroudoux.dsl.eip.EipPackage#getFilter() * @model * @generated */ public interface Filter extends Endpoint { /** * Returns the value of the '<em><b>Expression</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Expression</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Expression</em>' attribute. * @see #setExpression(String) * @see com.github.lbroudoux.dsl.eip.EipPackage#getFilter_Expression() * @model * @generated */ String getExpression(); /** * Sets the value of the '{@link com.github.lbroudoux.dsl.eip.Filter#getExpression <em>Expression</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Expression</em>' attribute. * @see #getExpression() * @generated */ void setExpression(String value); } // Filter