EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.pcm.gmf.composite.edit.parts]

COVERAGE SUMMARY FOR SOURCE FILE [AssemblyEventConnectorEditPart.java]

nameclass, %method, %block, %line, %
AssemblyEventConnectorEditPart.java0%   (0/2)0%   (0/7)0%   (0/104)0%   (0/22)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class AssemblyEventConnectorEditPart0%   (0/1)0%   (0/5)0%   (0/25)0%   (0/9)
AssemblyEventConnectorEditPart (View): void 0%   (0/1)0%   (0/4)0%   (0/2)
access$0 (AssemblyEventConnectorEditPart): IMapMode 0%   (0/1)0%   (0/3)0%   (0/1)
createConnectionFigure (): Connection 0%   (0/1)0%   (0/5)0%   (0/1)
createDefaultEditPolicies (): void 0%   (0/1)0%   (0/9)0%   (0/4)
getPrimaryShape (): AssemblyEventConnectorEditPart$AssemblyEventConnectorFigure 0%   (0/1)0%   (0/4)0%   (0/1)
     
class AssemblyEventConnectorEditPart$AssemblyEventConnectorFigure0%   (0/1)0%   (0/2)0%   (0/79)0%   (0/13)
AssemblyEventConnectorEditPart$AssemblyEventConnectorFigure (AssemblyEventCon... 0%   (0/1)0%   (0/13)0%   (0/4)
createTargetDecoration (): RotatableDecoration 0%   (0/1)0%   (0/66)0%   (0/9)

1/*
2 * Copyright 2007, SDQ, IPD, Uni Karlsruhe (TH)
3 */
4package de.uka.ipd.sdq.pcm.gmf.composite.edit.parts;
5 
6import org.eclipse.draw2d.Connection;
7import org.eclipse.draw2d.PolylineDecoration;
8import org.eclipse.draw2d.RotatableDecoration;
9import org.eclipse.draw2d.geometry.PointList;
10import org.eclipse.gmf.runtime.diagram.ui.editparts.ConnectionNodeEditPart;
11import org.eclipse.gmf.runtime.diagram.ui.editparts.ITreeBranchEditPart;
12import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles;
13import org.eclipse.gmf.runtime.draw2d.ui.figures.PolylineConnectionEx;
14import org.eclipse.gmf.runtime.notation.View;
15 
16import de.uka.ipd.sdq.pcm.gmf.composite.edit.policies.AssemblyEventConnectorItemSemanticEditPolicy;
17 
18/**
19 * @generated
20 */
21public 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}

[all classes][de.uka.ipd.sdq.pcm.gmf.composite.edit.parts]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov