/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.gmfgraph; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>General Facet</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * provide means to attach arbitrary data to your diagram element definition. It's up to you (template author) to process it somehow. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.gmfgraph.GeneralFacet#getIdentifier <em>Identifier</em>}</li> * <li>{@link org.eclipse.gmf.gmfgraph.GeneralFacet#getData <em>Data</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getGeneralFacet() * @model * @generated */ public interface GeneralFacet extends VisualFacet { /** * Returns the value of the '<em><b>Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identifier</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Identifier</em>' attribute. * @see #setIdentifier(String) * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getGeneralFacet_Identifier() * @model id="true" * @generated */ String getIdentifier(); /** * Sets the value of the '{@link org.eclipse.gmf.gmfgraph.GeneralFacet#getIdentifier <em>Identifier</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identifier</em>' attribute. * @see #getIdentifier() * @generated */ void setIdentifier(String value); /** * Returns the value of the '<em><b>Data</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Data</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Data</em>' attribute. * @see #setData(String) * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getGeneralFacet_Data() * @model * @generated */ String getData(); /** * Sets the value of the '{@link org.eclipse.gmf.gmfgraph.GeneralFacet#getData <em>Data</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Data</em>' attribute. * @see #getData() * @generated */ void setData(String value); } // GeneralFacet