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.AssemblyInfrastructureConnectorItemSemanticEditPolicy; |
17 | |
18 | /** |
19 | * @generated |
20 | */ |
21 | public class AssemblyInfrastructureConnectorEditPart extends |
22 | ConnectionNodeEditPart implements ITreeBranchEditPart { |
23 | |
24 | /** |
25 | * @generated |
26 | */ |
27 | public static final int VISUAL_ID = 4008; |
28 | |
29 | /** |
30 | * @generated |
31 | */ |
32 | public AssemblyInfrastructureConnectorEditPart(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 AssemblyInfrastructureConnectorItemSemanticEditPolicy()); |
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 AssemblyInfrastructureConnectorFigure(); |
56 | } |
57 | |
58 | /** |
59 | * @generated |
60 | */ |
61 | public AssemblyInfrastructureConnectorFigure getPrimaryShape() { |
62 | return (AssemblyInfrastructureConnectorFigure) getFigure(); |
63 | } |
64 | |
65 | /** |
66 | * @generated |
67 | */ |
68 | public class AssemblyInfrastructureConnectorFigure extends |
69 | PolylineConnectionEx { |
70 | |
71 | /** |
72 | * @generated |
73 | */ |
74 | public AssemblyInfrastructureConnectorFigure() { |
75 | this.setLineWidth(1); |
76 | |
77 | setTargetDecoration(createTargetDecoration()); |
78 | } |
79 | |
80 | /** |
81 | * @generated |
82 | */ |
83 | private RotatableDecoration createTargetDecoration() { |
84 | PolylineDecoration df = new PolylineDecoration(); |
85 | df.setLineWidth(1); |
86 | PointList pl = new PointList(); |
87 | pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(-1)); |
88 | pl.addPoint(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0)); |
89 | pl.addPoint(getMapMode().DPtoLP(-1), getMapMode().DPtoLP(1)); |
90 | df.setTemplate(pl); |
91 | df.setScale(getMapMode().DPtoLP(7), getMapMode().DPtoLP(3)); |
92 | return df; |
93 | } |
94 | |
95 | } |
96 | |
97 | } |