/** * <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>Component Setting</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.ComponentSetting#getName <em>Name</em>}</li> * <li>{@link org.talend.core.model.properties.ComponentSetting#isHidden <em>Hidden</em>}</li> * <li>{@link org.talend.core.model.properties.ComponentSetting#getFamily <em>Family</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getComponentSetting() * @model * @generated */ public interface ComponentSetting extends EObject { /** * 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#getComponentSetting_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.talend.core.model.properties.ComponentSetting#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>Hidden</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Hidden</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Hidden</em>' attribute. * @see #setHidden(boolean) * @see org.talend.core.model.properties.PropertiesPackage#getComponentSetting_Hidden() * @model * @generated */ boolean isHidden(); /** * Sets the value of the '{@link org.talend.core.model.properties.ComponentSetting#isHidden <em>Hidden</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Hidden</em>' attribute. * @see #isHidden() * @generated */ void setHidden(boolean value); /** * Returns the value of the '<em><b>Family</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Family</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Family</em>' attribute. * @see #setFamily(String) * @see org.talend.core.model.properties.PropertiesPackage#getComponentSetting_Family() * @model * @generated */ String getFamily(); /** * Sets the value of the '{@link org.talend.core.model.properties.ComponentSetting#getFamily <em>Family</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Family</em>' attribute. * @see #getFamily() * @generated */ void setFamily(String value); } // ComponentSetting