/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.papyrus.views.properties.environment; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Misc Class</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.papyrus.views.properties.environment.MiscClass#getLabel <em>Label</em>}</li> * <li>{@link org.eclipse.papyrus.views.properties.environment.MiscClass#getClass_ <em>Class</em>}</li> * <li>{@link org.eclipse.papyrus.views.properties.environment.MiscClass#getNamespace <em>Namespace</em>}</li> * </ul> * </p> * * @see org.eclipse.papyrus.views.properties.environment.EnvironmentPackage#getMiscClass() * @model * @generated */ public interface MiscClass extends EObject { /** * Returns the value of the '<em><b>Label</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Label</em>' attribute. * @see #setLabel(String) * @see org.eclipse.papyrus.views.properties.environment.EnvironmentPackage#getMiscClass_Label() * @model * @generated */ String getLabel(); /** * Sets the value of the '{@link org.eclipse.papyrus.views.properties.environment.MiscClass#getLabel <em>Label</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Label</em>' attribute. * @see #getLabel() * @generated */ void setLabel(String 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(String) * @see org.eclipse.papyrus.views.properties.environment.EnvironmentPackage#getMiscClass_Class() * @model required="true" * @generated */ String getClass_(); /** * Sets the value of the '{@link org.eclipse.papyrus.views.properties.environment.MiscClass#getClass_ <em>Class</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Class</em>' attribute. * @see #getClass_() * @generated */ void setClass(String value); /** * Returns the value of the '<em><b>Namespace</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Namespace</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Namespace</em>' reference. * @see #setNamespace(Namespace) * @see org.eclipse.papyrus.views.properties.environment.EnvironmentPackage#getMiscClass_Namespace() * @model * @generated */ Namespace getNamespace(); /** * Sets the value of the '{@link org.eclipse.papyrus.views.properties.environment.MiscClass#getNamespace <em>Namespace</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Namespace</em>' reference. * @see #getNamespace() * @generated */ void setNamespace(Namespace value); } // MiscClass