/** * <copyright> * </copyright> * * $Id$ */ package org.talend.core.model.properties; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Information</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.Information#getLevel <em>Level</em>}</li> * <li>{@link org.talend.core.model.properties.Information#getType <em>Type</em>}</li> * <li>{@link org.talend.core.model.properties.Information#getText <em>Text</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getInformation() * @model * @generated */ public interface Information extends EObject { /** * Returns the value of the '<em><b>Level</b></em>' attribute. * The literals are from the enumeration {@link org.talend.core.model.properties.InformationLevel}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Level</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Level</em>' attribute. * @see org.talend.core.model.properties.InformationLevel * @see #setLevel(InformationLevel) * @see org.talend.core.model.properties.PropertiesPackage#getInformation_Level() * @model required="true" * @generated */ InformationLevel getLevel(); /** * Sets the value of the '{@link org.talend.core.model.properties.Information#getLevel <em>Level</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Level</em>' attribute. * @see org.talend.core.model.properties.InformationLevel * @see #getLevel() * @generated */ void setLevel(InformationLevel value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' attribute. * @see #setType(String) * @see org.talend.core.model.properties.PropertiesPackage#getInformation_Type() * @model * @generated */ String getType(); /** * Sets the value of the '{@link org.talend.core.model.properties.Information#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); /** * Returns the value of the '<em><b>Text</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Text</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Text</em>' attribute. * @see #setText(String) * @see org.talend.core.model.properties.PropertiesPackage#getInformation_Text() * @model * @generated */ String getText(); /** * Sets the value of the '{@link org.talend.core.model.properties.Information#getText <em>Text</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Text</em>' attribute. * @see #getText() * @generated */ void setText(String value); } // Information