/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gen Property Sheet</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Sheet consists of few categories (aka tabs) * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getEditorGen <em>Editor Gen</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getTabs <em>Tabs</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getPackageName <em>Package Name</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#isReadOnly <em>Read Only</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#isNeedsCaption <em>Needs Caption</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getLabelProviderClassName <em>Label Provider Class Name</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet() * @model * @generated */ public interface GenPropertySheet extends EObject { /** * Returns the value of the '<em><b>Editor Gen</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenEditorGenerator#getPropertySheet <em>Property Sheet</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Editor Gen</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>Editor Gen</em>' container reference. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet_EditorGen() * @see org.eclipse.gmf.codegen.gmfgen.GenEditorGenerator#getPropertySheet * @model opposite="propertySheet" resolveProxies="false" required="true" transient="false" changeable="false" * @generated */ GenEditorGenerator getEditorGen(); /** * Returns the value of the '<em><b>Tabs</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab}. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#getSheet <em>Sheet</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Tabs</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>Tabs</em>' containment reference list. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet_Tabs() * @see org.eclipse.gmf.codegen.gmfgen.GenPropertyTab#getSheet * @model opposite="sheet" containment="true" required="true" * @generated */ EList<GenPropertyTab> getTabs(); /** * Returns the value of the '<em><b>Package Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Package 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>Package Name</em>' attribute. * @see #setPackageName(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet_PackageName() * @model * @generated */ String getPackageName(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getPackageName <em>Package Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Package Name</em>' attribute. * @see #getPackageName() * @generated */ void setPackageName(String value); /** * Returns the value of the '<em><b>Read Only</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Read Only</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Read Only</em>' attribute. * @see #setReadOnly(boolean) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet_ReadOnly() * @model default="false" * @generated */ boolean isReadOnly(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#isReadOnly <em>Read Only</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Read Only</em>' attribute. * @see #isReadOnly() * @generated */ void setReadOnly(boolean value); /** * Returns the value of the '<em><b>Needs Caption</b></em>' attribute. * The default value is <code>"true"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Needs Caption</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Needs Caption</em>' attribute. * @see #setNeedsCaption(boolean) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet_NeedsCaption() * @model default="true" * @generated */ boolean isNeedsCaption(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#isNeedsCaption <em>Needs Caption</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Needs Caption</em>' attribute. * @see #isNeedsCaption() * @generated */ void setNeedsCaption(boolean value); /** * Returns the value of the '<em><b>Label Provider Class Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label Provider Class 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>Label Provider Class Name</em>' attribute. * @see #setLabelProviderClassName(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPropertySheet_LabelProviderClassName() * @model * @generated */ String getLabelProviderClassName(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPropertySheet#getLabelProviderClassName <em>Label Provider Class Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Label Provider Class Name</em>' attribute. * @see #getLabelProviderClassName() * @generated */ void setLabelProviderClassName(String value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ String getLabelProviderQualifiedClassName(); } // GenPropertySheet