/** * <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 Preference Page</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getID <em>ID</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getName <em>Name</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getChildren <em>Children</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getParent <em>Parent</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getParentCategory <em>Parent Category</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPreferencePage() * @model abstract="true" * @generated */ public interface GenPreferencePage 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.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPreferencePage_ID() * @model required="true" * @generated */ String getID(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#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.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPreferencePage_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#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>Children</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage}. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getParent <em>Parent</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Children</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>Children</em>' containment reference list. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPreferencePage_Children() * @see org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getParent * @model opposite="parent" containment="true" * @generated */ EList<GenPreferencePage> getChildren(); /** * Returns the value of the '<em><b>Parent</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getChildren <em>Children</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parent</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>Parent</em>' container reference. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPreferencePage_Parent() * @see org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getChildren * @model opposite="children" resolveProxies="false" transient="false" changeable="false" * @generated */ GenPreferencePage getParent(); /** * Returns the value of the '<em><b>Parent Category</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * For a page that doesn't have another GenPreferencePage set as its parent, id of any other preference page to use as parent page may be set with this attribute * <!-- end-model-doc --> * @return the value of the '<em>Parent Category</em>' attribute. * @see #setParentCategory(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenPreferencePage_ParentCategory() * @model * @generated */ String getParentCategory(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenPreferencePage#getParentCategory <em>Parent Category</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parent Category</em>' attribute. * @see #getParentCategory() * @generated */ void setParentCategory(String value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ GenDiagram getDiagram(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ String getQualifiedClassName(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ String getClassName(); } // GenPreferencePage