/** * <copyright> </copyright> * * $Id: FileItem.java 65824 2011-08-11 02:32:09Z hywang $ */ package org.talend.core.model.properties; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>File Item</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.FileItem#getName <em>Name</em>}</li> * <li>{@link org.talend.core.model.properties.FileItem#getExtension <em>Extension</em>}</li> * <li>{@link org.talend.core.model.properties.FileItem#getContent <em>Content</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getFileItem() * @model abstract="true" * @generated */ public interface FileItem 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#getFileItem_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.talend.core.model.properties.FileItem#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>Extension</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Extension</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Extension</em>' attribute. * @see #setExtension(String) * @see org.talend.core.model.properties.PropertiesPackage#getFileItem_Extension() * @model * @generated */ String getExtension(); /** * Sets the value of the '{@link org.talend.core.model.properties.FileItem#getExtension <em>Extension</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Extension</em>' attribute. * @see #getExtension() * @generated */ void setExtension(String value); /** * Returns the value of the '<em><b>Content</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Content</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Content</em>' reference. * @see #setContent(ByteArray) * @see org.talend.core.model.properties.PropertiesPackage#getFileItem_Content() * @model * @generated */ ByteArray getContent(); /** * Sets the value of the '{@link org.talend.core.model.properties.FileItem#getContent <em>Content</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Content</em>' reference. * @see #getContent() * @generated */ void setContent(ByteArray value); } // FileItem