//------------------------------------------------------------------------------ // Copyright (c) 2005, 2006 IBM Corporation and others. // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // which accompanies this distribution, and is available at // http://www.eclipse.org/legal/epl-v10.html // // Contributors: // IBM Corporation - initial implementation //------------------------------------------------------------------------------ package org.eclipse.epf.uma; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Diagram Link</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.epf.uma.DiagramLink#getZoom <em>Zoom</em>}</li> * <li>{@link org.eclipse.epf.uma.DiagramLink#getViewport <em>Viewport</em>}</li> * <li>{@link org.eclipse.epf.uma.DiagramLink#getDiagram <em>Diagram</em>}</li> * <li>{@link org.eclipse.epf.uma.DiagramLink#getGraphElement <em>Graph Element</em>}</li> * </ul> * </p> * * @see org.eclipse.epf.uma.UmaPackage#getDiagramLink() * @model * @generated */ public interface DiagramLink extends DiagramElement { /** * Returns the value of the '<em><b>Zoom</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Zoom</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Zoom</em>' attribute. * @see #setZoom(Double) * @see org.eclipse.epf.uma.UmaPackage#getDiagramLink_Zoom() * @model dataType="org.eclipse.epf.uma.Double" required="true" ordered="false" * @generated */ Double getZoom(); /** * Sets the value of the '{@link org.eclipse.epf.uma.DiagramLink#getZoom <em>Zoom</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Zoom</em>' attribute. * @see #getZoom() * @generated */ void setZoom(Double value); /** * Returns the value of the '<em><b>Viewport</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Viewport</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>Viewport</em>' reference. * @see #setViewport(Point) * @see org.eclipse.epf.uma.UmaPackage#getDiagramLink_Viewport() * @model required="true" ordered="false" * @generated */ Point getViewport(); /** * Sets the value of the '{@link org.eclipse.epf.uma.DiagramLink#getViewport <em>Viewport</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Viewport</em>' reference. * @see #getViewport() * @generated */ void setViewport(Point value); /** * Returns the value of the '<em><b>Graph Element</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.epf.uma.GraphElement#getLink <em>Link</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Graph Element</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>Graph Element</em>' container reference. * @see #setGraphElement(GraphElement) * @see org.eclipse.epf.uma.UmaPackage#getDiagramLink_GraphElement() * @see org.eclipse.epf.uma.GraphElement#getLink * @model opposite="link" required="true" transient="false" ordered="false" * @generated */ GraphElement getGraphElement(); /** * Sets the value of the '{@link org.eclipse.epf.uma.DiagramLink#getGraphElement <em>Graph Element</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Graph Element</em>' container reference. * @see #getGraphElement() * @generated */ void setGraphElement(GraphElement value); /** * Returns the value of the '<em><b>Diagram</b></em>' reference. * It is bidirectional and its opposite is '{@link org.eclipse.epf.uma.Diagram#getDiagramLink <em>Diagram Link</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Diagram</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Diagram</em>' reference. * @see #setDiagram(Diagram) * @see org.eclipse.epf.uma.UmaPackage#getDiagramLink_Diagram() * @see org.eclipse.epf.uma.Diagram#getDiagramLink * @model opposite="diagramLink" required="true" ordered="false" * @generated */ Diagram getDiagram(); /** * Sets the value of the '{@link org.eclipse.epf.uma.DiagramLink#getDiagram <em>Diagram</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Diagram</em>' reference. * @see #getDiagram() * @generated */ void setDiagram(Diagram value); } // DiagramLink