/** */ package edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Feature</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.Feature#isSchema <em>Schema</em>}</li> * <li>{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.Feature#isClass <em>Class</em>}</li> * <li>{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.Feature#isProduct <em>Product</em>}</li> * </ul> * </p> * * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getFeature() * @model * @generated */ public interface Feature extends FeatureDecl { /** * Returns the value of the '<em><b>Schema</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Schema</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Schema</em>' attribute. * @see #setSchema(boolean) * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getFeature_Schema() * @model * @generated */ boolean isSchema(); /** * Sets the value of the '{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.Feature#isSchema <em>Schema</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Schema</em>' attribute. * @see #isSchema() * @generated */ void setSchema(boolean value); /** * Returns the value of the '<em><b>Class</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Class</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Class</em>' attribute. * @see #setClass(boolean) * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getFeature_Class() * @model * @generated */ boolean isClass(); /** * Sets the value of the '{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.Feature#isClass <em>Class</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Class</em>' attribute. * @see #isClass() * @generated */ void setClass(boolean value); /** * Returns the value of the '<em><b>Product</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Product</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Product</em>' attribute. * @see #setProduct(boolean) * @see edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.DeviceModelingLanguagePackage#getFeature_Product() * @model * @generated */ boolean isProduct(); /** * Sets the value of the '{@link edu.ksu.cis.projects.mdcf.devicemodel.deviceModelingLanguage.Feature#isProduct <em>Product</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Product</em>' attribute. * @see #isProduct() * @generated */ void setProduct(boolean value); } // Feature