/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gen Property Tab</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#getSheet <em>Sheet</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#getID <em>ID</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#getLabel <em>Label</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertyTab() * @model abstract="true" * @generated */ public interface GenPropertyTab extends EObject { /** * Returns the value of the '<em><b>Sheet</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getTabs <em>Tabs</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Sheet</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Sheet</em>' container reference. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertyTab_Sheet() * @see org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getTabs * @model opposite="tabs" resolveProxies="false" required="true" transient="false" changeable="false" * @generated */ GenPropertySheet getSheet(); /** * 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.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertyTab_ID() * @model required="true" * @generated */ String getID(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#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>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.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertyTab_Label() * @model * @generated */ String getLabel(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#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); } // GenPropertyTab