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

COVERAGE SUMMARY FOR SOURCE FILE [FailureHandlingEntityItemProvider.java]

nameclass, %method, %block, %line, %
FailureHandlingEntityItemProvider.java0%   (0/1)0%   (0/7)0%   (0/85)0%   (0/30)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FailureHandlingEntityItemProvider0%   (0/1)0%   (0/7)0%   (0/85)0%   (0/30)
FailureHandlingEntityItemProvider (AdapterFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
addFailureTypes_FailureHandlingEntityPropertyDescriptor (Object): void 0%   (0/1)0%   (0/28)0%   (0/14)
collectNewChildDescriptors (Collection, Object): void 0%   (0/1)0%   (0/5)0%   (0/2)
getPropertyDescriptors (Object): List 0%   (0/1)0%   (0/13)0%   (0/4)
getResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
getText (Object): String 0%   (0/1)0%   (0/26)0%   (0/4)
notifyChanged (Notification): void 0%   (0/1)0%   (0/7)0%   (0/3)

1/**
2 * Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany
3 *
4 * $Id$
5 */
6package de.uka.ipd.sdq.pcm.seff.seff_reliability.provider;
7 
8 
9import java.util.Collection;
10import java.util.List;
11 
12import org.eclipse.emf.common.notify.AdapterFactory;
13import org.eclipse.emf.common.notify.Notification;
14import org.eclipse.emf.common.util.ResourceLocator;
15import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
16import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
17import org.eclipse.emf.edit.provider.IItemLabelProvider;
18import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
19import org.eclipse.emf.edit.provider.IItemPropertySource;
20import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
21import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
22 
23import de.uka.ipd.sdq.pcm.core.entity.provider.EntityItemProvider;
24import de.uka.ipd.sdq.pcm.core.provider.PalladioComponentModelEditPlugin;
25import de.uka.ipd.sdq.pcm.seff.seff_reliability.FailureHandlingEntity;
26import de.uka.ipd.sdq.pcm.seff.seff_reliability.Seff_reliabilityPackage;
27 
28/**
29 * This is the item provider adapter for a {@link de.uka.ipd.sdq.pcm.seff.seff_reliability.FailureHandlingEntity} object.
30 * <!-- begin-user-doc -->
31 * <!-- end-user-doc -->
32 * @generated
33 */
34public class FailureHandlingEntityItemProvider
35        extends EntityItemProvider
36        implements
37                IEditingDomainItemProvider,
38                IStructuredItemContentProvider,
39                ITreeItemContentProvider,
40                IItemLabelProvider,
41                IItemPropertySource {
42        /**
43         * <!-- begin-user-doc -->
44         * <!-- end-user-doc -->
45         * @generated
46         */
47        public static final String copyright = "Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany";
48 
49        /**
50         * This constructs an instance from a factory and a notifier.
51         * <!-- begin-user-doc -->
52         * <!-- end-user-doc -->
53         * @generated
54         */
55        public FailureHandlingEntityItemProvider(AdapterFactory adapterFactory) {
56                super(adapterFactory);
57        }
58 
59        /**
60         * This returns the property descriptors for the adapted class.
61         * <!-- begin-user-doc -->
62         * <!-- end-user-doc -->
63         * @generated
64         */
65        @Override
66        public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) {
67                if (itemPropertyDescriptors == null) {
68                        super.getPropertyDescriptors(object);
69 
70                        addFailureTypes_FailureHandlingEntityPropertyDescriptor(object);
71                }
72                return itemPropertyDescriptors;
73        }
74 
75        /**
76         * This adds a property descriptor for the Failure Types Failure Handling Entity feature.
77         * <!-- begin-user-doc -->
78         * <!-- end-user-doc -->
79         * @generated
80         */
81        protected void addFailureTypes_FailureHandlingEntityPropertyDescriptor(Object object) {
82                itemPropertyDescriptors.add
83                        (createItemPropertyDescriptor
84                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
85                                 getResourceLocator(),
86                                 getString("_UI_FailureHandlingEntity_failureTypes_FailureHandlingEntity_feature"),
87                                 getString("_UI_PropertyDescriptor_description", "_UI_FailureHandlingEntity_failureTypes_FailureHandlingEntity_feature", "_UI_FailureHandlingEntity_type"),
88                                 Seff_reliabilityPackage.Literals.FAILURE_HANDLING_ENTITY__FAILURE_TYPES_FAILURE_HANDLING_ENTITY,
89                                 true,
90                                 false,
91                                 true,
92                                 null,
93                                 null,
94                                 null));
95        }
96 
97        /**
98         * This returns the label text for the adapted class.
99         * <!-- begin-user-doc -->
100         * <!-- end-user-doc -->
101         * @generated
102         */
103        @Override
104        public String getText(Object object) {
105                String label = ((FailureHandlingEntity)object).getId();
106                return label == null || label.length() == 0 ?
107                        getString("_UI_FailureHandlingEntity_type") :
108                        getString("_UI_FailureHandlingEntity_type") + " " + label;
109        }
110 
111        /**
112         * This handles model notifications by calling {@link #updateChildren} to update any cached
113         * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
114         * <!-- begin-user-doc -->
115         * <!-- end-user-doc -->
116         * @generated
117         */
118        @Override
119        public void notifyChanged(Notification notification) {
120                updateChildren(notification);
121                super.notifyChanged(notification);
122        }
123 
124        /**
125         * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
126         * that can be created under this object.
127         * <!-- begin-user-doc -->
128         * <!-- end-user-doc -->
129         * @generated
130         */
131        @Override
132        protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
133                super.collectNewChildDescriptors(newChildDescriptors, object);
134        }
135 
136        /**
137         * Return the resource locator for this item provider's resources.
138         * <!-- begin-user-doc -->
139         * <!-- end-user-doc -->
140         * @generated
141         */
142        @Override
143        public ResourceLocator getResourceLocator() {
144                return PalladioComponentModelEditPlugin.INSTANCE;
145        }
146 
147}

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