/** * <copyright> * </copyright> * * $Id$ */ package org.dresdenocl.examples.pml; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- 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 org.dresdenocl.examples.pml.Feature#getId <em>Id</em>}</li> * <li>{@link org.dresdenocl.examples.pml.Feature#getName <em>Name</em>}</li> * <li>{@link org.dresdenocl.examples.pml.Feature#getVersion <em>Version</em>}</li> * <li>{@link org.dresdenocl.examples.pml.Feature#getPlugins <em>Plugins</em>}</li> * </ul> * </p> * * @see org.dresdenocl.examples.pml.PmlPackage#getFeature() * @model * @generated */ public interface Feature 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(String) * @see org.dresdenocl.examples.pml.PmlPackage#getFeature_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link org.dresdenocl.examples.pml.Feature#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(String value); /** * 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.dresdenocl.examples.pml.PmlPackage#getFeature_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.dresdenocl.examples.pml.Feature#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>Version</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Version</em>' attribute. * @see #setVersion(String) * @see org.dresdenocl.examples.pml.PmlPackage#getFeature_Version() * @model * @generated */ String getVersion(); /** * Sets the value of the '{@link org.dresdenocl.examples.pml.Feature#getVersion <em>Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Version</em>' attribute. * @see #getVersion() * @generated */ void setVersion(String value); /** * Returns the value of the '<em><b>Plugins</b></em>' containment reference list. * The list contents are of type {@link org.dresdenocl.examples.pml.Plugin}. * It is bidirectional and its opposite is '{@link org.dresdenocl.examples.pml.Plugin#getFeature <em>Feature</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Plugins</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Plugins</em>' containment reference list. * @see org.dresdenocl.examples.pml.PmlPackage#getFeature_Plugins() * @see org.dresdenocl.examples.pml.Plugin#getFeature * @model opposite="feature" containment="true" * @generated */ EList<Plugin> getPlugins(); } // Feature