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

COVERAGE SUMMARY FOR SOURCE FILE [InternalActionResourceDemandEditPart.java]

nameclass, %method, %block, %line, %
InternalActionResourceDemandEditPart.java0%   (0/1)0%   (0/5)0%   (0/51)0%   (0/19)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class InternalActionResourceDemandEditPart0%   (0/1)0%   (0/5)0%   (0/51)0%   (0/19)
InternalActionResourceDemandEditPart (View): void 0%   (0/1)0%   (0/4)0%   (0/2)
createDefaultEditPolicies (): void 0%   (0/1)0%   (0/33)0%   (0/12)
getCompartmentName (): String 0%   (0/1)0%   (0/2)0%   (0/1)
hasModelChildrenChanged (Notification): boolean 0%   (0/1)0%   (0/2)0%   (0/1)
setRatio (Double): void 0%   (0/1)0%   (0/10)0%   (0/3)

1/*
2 * Copyright 2006 SDQ Research Group, University of Karlsruhe (TH)
3 */
4package de.uka.ipd.sdq.pcm.gmf.seff.edit.parts;
5 
6import org.eclipse.emf.common.notify.Notification;
7import org.eclipse.gef.EditPolicy;
8import org.eclipse.gmf.runtime.diagram.ui.editparts.ListCompartmentEditPart;
9import org.eclipse.gmf.runtime.diagram.ui.editpolicies.CreationEditPolicy;
10import org.eclipse.gmf.runtime.diagram.ui.editpolicies.DragDropEditPolicy;
11import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles;
12import org.eclipse.gmf.runtime.diagram.ui.editpolicies.ResizableCompartmentEditPolicy;
13import org.eclipse.gmf.runtime.draw2d.ui.figures.ConstrainedToolbarLayout;
14import org.eclipse.gmf.runtime.notation.View;
15 
16import de.uka.ipd.sdq.pcm.gmf.seff.edit.policies.InternalActionResourceDemandCanonicalEditPolicy;
17import de.uka.ipd.sdq.pcm.gmf.seff.edit.policies.InternalActionResourceDemandItemSemanticEditPolicy;
18import de.uka.ipd.sdq.pcm.gmf.seff.part.Messages;
19 
20/**
21 * @generated
22 */
23public class InternalActionResourceDemandEditPart extends
24                ListCompartmentEditPart {
25 
26        /**
27         * @generated
28         */
29        public static final int VISUAL_ID = 7006;
30 
31        /**
32         * @generated
33         */
34        public InternalActionResourceDemandEditPart(View view) {
35                super(view);
36        }
37 
38        /**
39         * @generated
40         */
41        protected boolean hasModelChildrenChanged(Notification evt) {
42                return false;
43        }
44 
45        /**
46         * @generated
47         */
48        public String getCompartmentName() {
49                return Messages.InternalActionResourceDemandEditPart_title;
50        }
51 
52        /**
53         * @generated
54         */
55        protected void createDefaultEditPolicies() {
56                super.createDefaultEditPolicies();
57                installEditPolicy(EditPolicy.PRIMARY_DRAG_ROLE,
58                                new ResizableCompartmentEditPolicy());
59                installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE,
60                                new InternalActionResourceDemandItemSemanticEditPolicy());
61                installEditPolicy(EditPolicyRoles.CREATION_ROLE,
62                                new CreationEditPolicy());
63                installEditPolicy(EditPolicyRoles.DRAG_DROP_ROLE,
64                                new DragDropEditPolicy());
65                installEditPolicy(EditPolicyRoles.CANONICAL_ROLE,
66                                new InternalActionResourceDemandCanonicalEditPolicy());
67        }
68 
69        /**
70         * @generated
71         */
72        protected void setRatio(Double ratio) {
73                if (getFigure().getParent().getLayoutManager() instanceof ConstrainedToolbarLayout) {
74                        super.setRatio(ratio);
75                }
76        }
77 
78}

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