Skip to main content
summaryrefslogtreecommitdiffstats
blob: ea5529820ed36888b84cabe2235d1badbbfdedde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**
 * <copyright>
 * </copyright>
 *
 * $Id$
 */
package org.eclipse.papyrus.conversion.di2;

import org.eclipse.draw2d.geometry.Point;

import org.eclipse.emf.common.util.EList;

/**
 * <!-- begin-user-doc --> A representation of the model object '<em><b>Polilyne</b></em>'. <!--
 * end-user-doc -->
 * 
 * <p>
 * The following features are supported:
 * <ul>
 * <li>{@link org.eclipse.papyrus.conversion.di2.Polilyne#getWaypoints <em>Waypoints</em>}</li>
 * <li>{@link org.eclipse.papyrus.conversion.di2.Polilyne#getClosed <em>Closed</em>}</li>
 * </ul>
 * </p>
 * 
 * @see org.eclipse.papyrus.conversion.di2.Di2Package#getPolilyne()
 * @model
 * @generated
 */
public interface Polilyne extends GraphicPrimitive {

	/**
	 * Returns the value of the '<em><b>Waypoints</b></em>' attribute list. The list contents are of
	 * type {@link org.eclipse.draw2d.geometry.Point}. <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Waypoints</em>' attribute list isn't clear, there really should be
	 * more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * 
	 * @return the value of the '<em>Waypoints</em>' attribute list.
	 * @see org.eclipse.papyrus.conversion.di2.Di2Package#getPolilyne_Waypoints()
	 * @model dataType="com.cea.papyrus.diagraminterchange2.di2.Point" lower="2"
	 * @generated
	 */
	EList<Point> getWaypoints();

	/**
	 * Returns the value of the '<em><b>Closed</b></em>' attribute list. The list contents are of
	 * type {@link java.lang.Boolean}. <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Closed</em>' attribute list isn't clear, there really should be
	 * more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * 
	 * @return the value of the '<em>Closed</em>' attribute list.
	 * @see org.eclipse.papyrus.conversion.di2.Di2Package#getPolilyne_Closed()
	 * @model dataType="org.eclipse.uml2.uml.Boolean" lower="2"
	 * @generated
	 */
	EList<Boolean> getClosed();

} // Polilyne

Back to the top