/** * <copyright> * </copyright> * * $Id$ */ package org.talend.core.model.properties; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Snippet Item</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.SnippetItem#getName <em>Name</em>}</li> * <li>{@link org.talend.core.model.properties.SnippetItem#getContent <em>Content</em>}</li> * <li>{@link org.talend.core.model.properties.SnippetItem#getVariables <em>Variables</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getSnippetItem() * @model * @generated */ public interface SnippetItem extends Item { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.talend.core.model.properties.PropertiesPackage#getSnippetItem_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.talend.core.model.properties.SnippetItem#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Content</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Content</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Content</em>' attribute. * @see #setContent(String) * @see org.talend.core.model.properties.PropertiesPackage#getSnippetItem_Content() * @model * @generated */ String getContent(); /** * Sets the value of the '{@link org.talend.core.model.properties.SnippetItem#getContent <em>Content</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Content</em>' attribute. * @see #getContent() * @generated */ void setContent(String value); /** * Returns the value of the '<em><b>Variables</b></em>' reference list. * The list contents are of type {@link org.talend.core.model.properties.SnippetVariable}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Variables</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Variables</em>' reference list. * @see org.talend.core.model.properties.PropertiesPackage#getSnippetItem_Variables() * @model type="org.talend.core.model.properties.SnippetVariable" * @generated */ EList getVariables(); } // SnippetItem