blob: c4ce970617b9ed1423827c96d243526d3bede77b [file] [log] [blame]
/**
* Copyright (c) 2014 CEA LIST.
*
* 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:
* CEA LIST - Initial API and implementation
*/
package org.eclipse.papyrus.dd.dg;
import org.eclipse.papyrus.dd.dc.Point;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Move To</b></em>'. <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* MoveTo is a kind of path command that establishes a new current point in the coordinate system.
* Definition is an object with an id that can be nested under Definitions.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.dd.dg.MoveTo#getPoint <em>Point</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.dd.dg.DGPackage#getMoveTo()
* @model
* @generated
*/
public interface MoveTo extends PathCommand {
/**
* Returns the value of the '<em><b>Point</b></em>' containment reference.
* <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> a
* point to move to in the coordinate system <!-- end-model-doc -->
*
* @return the value of the '<em>Point</em>' containment reference.
* @see #setPoint(Point)
* @see org.eclipse.papyrus.dd.dg.DGPackage#getMoveTo_Point()
* @model containment="true" required="true" ordered="false"
* @generated
*/
Point getPoint();
/**
* Sets the value of the '{@link org.eclipse.papyrus.dd.dg.MoveTo#getPoint <em>Point</em>}' containment reference.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Point</em>' containment reference.
* @see #getPoint()
* @generated
*/
void setPoint(Point value);
} // MoveTo