/** * <copyright> * </copyright> * * $Id$ */ package org.jboss.tools.smooks.model.freemarker; import org.jboss.tools.smooks.model.common.AbstractAnyType; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Bind To</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * * Bind the templating result into the bean context under the specified "id". This makes the * templating result available for routing or other operations. * * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.jboss.tools.smooks.model.freemarker.BindTo#getId <em>Id</em>}</li> * </ul> * </p> * * @see org.jboss.tools.smooks.model.freemarker.FreemarkerPackage#getBindTo() * @model extendedMetaData="name='bindTo' kind='empty'" * @generated */ public interface BindTo extends AbstractAnyType { /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * * The bean context ID under which the templating result is to be bound if the "bindTo" action is chosen. * * <!-- end-model-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.jboss.tools.smooks.model.freemarker.FreemarkerPackage#getBindTo_Id() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='id'" * @generated */ String getId(); /** * Sets the value of the '{@link org.jboss.tools.smooks.model.freemarker.BindTo#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); } // BindTo