blob: ed56401675c50977db3d96140638cc95e97c6078 [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>Line To</b></em>'. <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* LineTo is a kind of path command that draw a straight line from the current point to a new point.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.dd.dg.LineTo#getPoint <em>Point</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.dd.dg.DGPackage#getLineTo()
* @model
* @generated
*/
public interface LineTo 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 draw a straight line to from the current point 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#getLineTo_Point()
* @model containment="true" required="true" ordered="false"
* @generated
*/
Point getPoint();
/**
* Sets the value of the '{@link org.eclipse.papyrus.dd.dg.LineTo#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);
} // LineTo