/** * <copyright> * </copyright> * * $Id$ */ package org.talend.core.model.properties; import java.math.BigDecimal; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Notification</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.Notification#getId <em>Id</em>}</li> * <li>{@link org.talend.core.model.properties.Notification#getType <em>Type</em>}</li> * <li>{@link org.talend.core.model.properties.Notification#getProps <em>Props</em>}</li> * <li>{@link org.talend.core.model.properties.Notification#isEnabled <em>Enabled</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getNotification() * @model * @generated */ public interface Notification extends EObject { /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(int) * @see org.talend.core.model.properties.PropertiesPackage#getNotification_Id() * @model id="true" required="true" * @generated */ int getId(); /** * Sets the value of the '{@link org.talend.core.model.properties.Notification#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(int 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#getNotification_Type() * @model required="true" * @generated */ String getType(); /** * Sets the value of the '{@link org.talend.core.model.properties.Notification#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>Props</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Props</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Props</em>' attribute. * @see #setProps(String) * @see org.talend.core.model.properties.PropertiesPackage#getNotification_Props() * @model * @generated */ String getProps(); /** * Sets the value of the '{@link org.talend.core.model.properties.Notification#getProps <em>Props</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Props</em>' attribute. * @see #getProps() * @generated */ void setProps(String value); /** * Returns the value of the '<em><b>Enabled</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Enabled</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Enabled</em>' attribute. * @see #setEnabled(boolean) * @see org.talend.core.model.properties.PropertiesPackage#getNotification_Enabled() * @model * @generated */ boolean isEnabled(); /** * Sets the value of the '{@link org.talend.core.model.properties.Notification#isEnabled <em>Enabled</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Enabled</em>' attribute. * @see #isEnabled() * @generated */ void setEnabled(boolean value); } // Notification