blob: 9e34edd55c1ea1a8edb4eb0ce3585b29277fd744 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.gmf.gmfgraph;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Figure Descriptor</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The thing describes structure of a figure
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.gmfgraph.FigureDescriptor#getActualFigure <em>Actual Figure</em>}</li>
* <li>{@link org.eclipse.gmf.gmfgraph.FigureDescriptor#getAccessors <em>Accessors</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getFigureDescriptor()
* @model
* @generated
*/
public interface FigureDescriptor extends Identity {
/**
* Returns the value of the '<em><b>Actual Figure</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Actual Figure</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Actual Figure</em>' containment reference.
* @see #setActualFigure(Figure)
* @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getFigureDescriptor_ActualFigure()
* @model containment="true" required="true"
* @generated
*/
Figure getActualFigure();
/**
* Sets the value of the '{@link org.eclipse.gmf.gmfgraph.FigureDescriptor#getActualFigure <em>Actual Figure</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Actual Figure</em>' containment reference.
* @see #getActualFigure()
* @generated
*/
void setActualFigure(Figure value);
/**
* Returns the value of the '<em><b>Accessors</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.gmf.gmfgraph.ChildAccess}.
* It is bidirectional and its opposite is '{@link org.eclipse.gmf.gmfgraph.ChildAccess#getOwner <em>Owner</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Accessors</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>Accessors</em>' containment reference list.
* @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getFigureDescriptor_Accessors()
* @see org.eclipse.gmf.gmfgraph.ChildAccess#getOwner
* @model opposite="owner" containment="true"
* @generated
*/
EList<ChildAccess> getAccessors();
} // FigureDescriptor