1 | /* |
2 | * Copyright 2007, SDQ, IPD, Uni Karlsruhe (TH) |
3 | */ |
4 | package de.uka.ipd.sdq.pcm.gmf.composite.edit.parts; |
5 | |
6 | import org.eclipse.draw2d.Connection; |
7 | import org.eclipse.draw2d.PolylineDecoration; |
8 | import org.eclipse.draw2d.RotatableDecoration; |
9 | import org.eclipse.draw2d.geometry.PointList; |
10 | import org.eclipse.gmf.runtime.diagram.ui.editparts.ConnectionNodeEditPart; |
11 | import org.eclipse.gmf.runtime.diagram.ui.editparts.ITreeBranchEditPart; |
12 | import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles; |
13 | import org.eclipse.gmf.runtime.draw2d.ui.figures.PolylineConnectionEx; |
14 | import org.eclipse.gmf.runtime.notation.View; |
15 | |
16 | import de.uka.ipd.sdq.pcm.gmf.composite.edit.policies.AssemblyEventConnectorItemSemanticEditPolicy; |
17 | |
18 | /** |
19 | * @generated |
20 | */ |
21 | public class AssemblyEventConnectorEditPart extends ConnectionNodeEditPart |
22 | implements ITreeBranchEditPart { |
23 | |
24 | /** |
25 | * @generated |
26 | */ |
27 | public static final int VISUAL_ID = 4007; |
28 | |
29 | /** |
30 | * @generated |
31 | */ |
32 | public AssemblyEventConnectorEditPart(View view) { |
33 | super(view); |
34 | } |
35 | |
36 | /** |
37 | * @generated |
38 | */ |
39 | protected void createDefaultEditPolicies() { |
40 | super.createDefaultEditPolicies(); |
41 | installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE, |
42 | new AssemblyEventConnectorItemSemanticEditPolicy()); |
43 | } |
44 | |
45 | /** |
46 | * Creates figure for this edit part. |
47 | * |
48 | * Body of this method does not depend on settings in generation model |
49 | * so you may safely remove <i>generated</i> tag and modify it. |
50 | * |
51 | * @generated |
52 | */ |
53 | |
54 | protected Connection createConnectionFigure() { |
55 | return new AssemblyEventConnectorFigure(); |
56 | } |
57 | |
58 | /** |
59 | * @generated |
60 | */ |
61 | public AssemblyEventConnectorFigure getPrimaryShape() { |
62 | return (AssemblyEventConnectorFigure) getFigure(); |
63 | } |
64 | |
65 | /** |
66 | * @generated |
67 | */ |
68 | public class AssemblyEventConnectorFigure extends PolylineConnectionEx { |
69 | |
70 | /** |
71 | * @generated |
72 | */ |
73 | public AssemblyEventConnectorFigure() { |
74 | this.setLineWidth(1); |
75 | |
76 | setTargetDecoration(createTargetDecoration()); |
77 | } |
78 | |
79 | /** |
80 | * @generated |
81 | */ |
82 | private RotatableDecoration createTargetDecoration() { |
83 | PolylineDecoration df = new PolylineDecoration(); |
84 | df.setLineWidth(1); |
85 | PointList pl = new PointList(); |
86 | pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(-1)); |
87 | pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0)); |
88 | pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(1)); |
89 | df.setTemplate(pl); |
90 | df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3)); |
91 | return df; |
92 | } |
93 | |
94 | } |
95 | |
96 | } |