/** * <copyright> </copyright> * * $Id: Status.java 19828 2008-11-05 10:07:53Z ggu $ */ package org.talend.core.model.properties; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Status</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.Status#getLabel <em>Label</em>}</li> * <li>{@link org.talend.core.model.properties.Status#getCode <em>Code</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getStatus() * @model * @generated */ public interface Status extends EObject { public static final String TECHNICAL_STATUS = "org.talend.repository.properties.status.technical"; //$NON-NLS-1$ public static final String DOCUMENTATION_STATUS = "org.talend.repository.properties.status.documentation"; //$NON-NLS-1$ /** * Returns the value of the '<em><b>Label</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Label</em>' attribute. * @see #setLabel(String) * @see org.talend.core.model.properties.PropertiesPackage#getStatus_Label() * @model * @generated */ String getLabel(); /** * Sets the value of the '{@link org.talend.core.model.properties.Status#getLabel <em>Label</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Label</em>' attribute. * @see #getLabel() * @generated */ void setLabel(String value); /** * Returns the value of the '<em><b>Code</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Code</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Code</em>' attribute. * @see #setCode(String) * @see org.talend.core.model.properties.PropertiesPackage#getStatus_Code() * @model required="true" * @generated */ String getCode(); /** * Sets the value of the '{@link org.talend.core.model.properties.Status#getCode <em>Code</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Code</em>' attribute. * @see #getCode() * @generated */ void setCode(String value); } // Status