/** * <copyright> * </copyright> * * $Id$ */ package org.jboss.tools.smooks.model.csv12; import org.jboss.tools.smooks.model.smooks.AbstractResourceConfig; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Binding</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * * CSV Binding Configuration. * <p/> * Supports simple automatic java binding of CSV records onto a bean based on the configured field * names matching the target bean's property names. For more complex binding, use the main Java * binding configurations. * * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.jboss.tools.smooks.model.csv12.Binding#getBeanId <em>Bean Id</em>}</li> * <li>{@link org.jboss.tools.smooks.model.csv12.Binding#getClass_ <em>Class</em>}</li> * </ul> * </p> * * @see org.jboss.tools.smooks.model.csv12.Csv12Package#getBinding() * @model extendedMetaData="name='binding' kind='empty'" * @generated */ public interface Binding extends AbstractResourceConfig { /** * Returns the value of the '<em><b>Bean Id</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * * The ID under which the created bean is to be bound in the bean context. * * <!-- end-model-doc --> * @return the value of the '<em>Bean Id</em>' attribute. * @see #setBeanId(String) * @see org.jboss.tools.smooks.model.csv12.Csv12Package#getBinding_BeanId() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='beanId'" * @generated */ String getBeanId(); /** * Sets the value of the '{@link org.jboss.tools.smooks.model.csv12.Binding#getBeanId <em>Bean Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Bean Id</em>' attribute. * @see #getBeanId() * @generated */ void setBeanId(String value); /** * Returns the value of the '<em><b>Class</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * * The fully qualified bean Class name. * * <!-- end-model-doc --> * @return the value of the '<em>Class</em>' attribute. * @see #setClass(String) * @see org.jboss.tools.smooks.model.csv12.Csv12Package#getBinding_Class() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='class'" * @generated */ String getClass_(); /** * Sets the value of the '{@link org.jboss.tools.smooks.model.csv12.Binding#getClass_ <em>Class</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Class</em>' attribute. * @see #getClass_() * @generated */ void setClass(String value); } // Binding