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

COVERAGE SUMMARY FOR SOURCE FILE [AssemblyContextItemProvider.java]

nameclass, %method, %block, %line, %
AssemblyContextItemProvider.java0%   (0/1)0%   (0/10)0%   (0/136)0%   (0/43)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class AssemblyContextItemProvider0%   (0/1)0%   (0/10)0%   (0/136)0%   (0/43)
AssemblyContextItemProvider (AdapterFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
addEncapsulatedComponent__AssemblyContextPropertyDescriptor (Object): void 0%   (0/1)0%   (0/28)0%   (0/14)
collectNewChildDescriptors (Collection, Object): void 0%   (0/1)0%   (0/13)0%   (0/6)
getChildFeature (Object, Object): EStructuralFeature 0%   (0/1)0%   (0/5)0%   (0/1)
getChildrenFeatures (Object): Collection 0%   (0/1)0%   (0/15)0%   (0/4)
getImage (Object): Object 0%   (0/1)0%   (0/8)0%   (0/1)
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/22)0%   (0/6)

1/**
2 * Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany
3 *
4 * $Id$
5 */
6package de.uka.ipd.sdq.pcm.core.composition.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.ecore.EStructuralFeature;
16import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
17import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
18import org.eclipse.emf.edit.provider.IItemLabelProvider;
19import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
20import org.eclipse.emf.edit.provider.IItemPropertySource;
21import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
22import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
23import org.eclipse.emf.edit.provider.ViewerNotification;
24 
25import de.uka.ipd.sdq.pcm.core.composition.AssemblyContext;
26import de.uka.ipd.sdq.pcm.core.composition.CompositionPackage;
27import de.uka.ipd.sdq.pcm.core.entity.provider.EntityItemProvider;
28import de.uka.ipd.sdq.pcm.core.provider.PalladioComponentModelEditPlugin;
29import de.uka.ipd.sdq.pcm.parameter.ParameterFactory;
30 
31/**
32 * This is the item provider adapter for a {@link de.uka.ipd.sdq.pcm.core.composition.AssemblyContext} object.
33 * <!-- begin-user-doc -->
34 * <!-- end-user-doc -->
35 * @generated
36 */
37public class AssemblyContextItemProvider
38        extends EntityItemProvider
39        implements
40                IEditingDomainItemProvider,
41                IStructuredItemContentProvider,
42                ITreeItemContentProvider,
43                IItemLabelProvider,
44                IItemPropertySource {
45        /**
46         * <!-- begin-user-doc -->
47         * <!-- end-user-doc -->
48         * @generated
49         */
50        public static final String copyright = "Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany";
51 
52        /**
53         * This constructs an instance from a factory and a notifier.
54         * <!-- begin-user-doc -->
55         * <!-- end-user-doc -->
56         * @generated
57         */
58        public AssemblyContextItemProvider(AdapterFactory adapterFactory) {
59                super(adapterFactory);
60        }
61 
62        /**
63         * This returns the property descriptors for the adapted class.
64         * <!-- begin-user-doc -->
65         * <!-- end-user-doc -->
66         * @generated
67         */
68        @Override
69        public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) {
70                if (itemPropertyDescriptors == null) {
71                        super.getPropertyDescriptors(object);
72 
73                        addEncapsulatedComponent__AssemblyContextPropertyDescriptor(object);
74                }
75                return itemPropertyDescriptors;
76        }
77 
78        /**
79         * This adds a property descriptor for the Encapsulated Component Assembly Context feature.
80         * <!-- begin-user-doc -->
81         * <!-- end-user-doc -->
82         * @generated
83         */
84        protected void addEncapsulatedComponent__AssemblyContextPropertyDescriptor(Object object) {
85                itemPropertyDescriptors.add
86                        (createItemPropertyDescriptor
87                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
88                                 getResourceLocator(),
89                                 getString("_UI_AssemblyContext_encapsulatedComponent__AssemblyContext_feature"),
90                                 getString("_UI_PropertyDescriptor_description", "_UI_AssemblyContext_encapsulatedComponent__AssemblyContext_feature", "_UI_AssemblyContext_type"),
91                                 CompositionPackage.Literals.ASSEMBLY_CONTEXT__ENCAPSULATED_COMPONENT_ASSEMBLY_CONTEXT,
92                                 true,
93                                 false,
94                                 true,
95                                 null,
96                                 null,
97                                 null));
98        }
99 
100        /**
101         * This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an
102         * {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or
103         * {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}.
104         * <!-- begin-user-doc -->
105         * <!-- end-user-doc -->
106         * @generated
107         */
108        @Override
109        public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) {
110                if (childrenFeatures == null) {
111                        super.getChildrenFeatures(object);
112                        childrenFeatures.add(CompositionPackage.Literals.ASSEMBLY_CONTEXT__CONFIG_PARAMETER_USAGES_ASSEMBLY_CONTEXT);
113                }
114                return childrenFeatures;
115        }
116 
117        /**
118         * <!-- begin-user-doc -->
119         * <!-- end-user-doc -->
120         * @generated
121         */
122        @Override
123        protected EStructuralFeature getChildFeature(Object object, Object child) {
124                // Check the type of the specified child object and return the proper feature to use for
125                // adding (see {@link AddCommand}) it as a child.
126 
127                return super.getChildFeature(object, child);
128        }
129 
130        /**
131         * This returns AssemblyContext.gif.
132         * <!-- begin-user-doc -->
133         * <!-- end-user-doc -->
134         * @generated
135         */
136        @Override
137        public Object getImage(Object object) {
138                return overlayImage(object, getResourceLocator().getImage("full/obj16/AssemblyContext"));
139        }
140 
141        /**
142         * This returns the label text for the adapted class.
143         * <!-- begin-user-doc -->
144         * <!-- end-user-doc -->
145         * @generated
146         */
147        @Override
148        public String getText(Object object) {
149                String label = ((AssemblyContext)object).getId();
150                return label == null || label.length() == 0 ?
151                        getString("_UI_AssemblyContext_type") :
152                        getString("_UI_AssemblyContext_type") + " " + label;
153        }
154 
155        /**
156         * This handles model notifications by calling {@link #updateChildren} to update any cached
157         * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
158         * <!-- begin-user-doc -->
159         * <!-- end-user-doc -->
160         * @generated
161         */
162        @Override
163        public void notifyChanged(Notification notification) {
164                updateChildren(notification);
165 
166                switch (notification.getFeatureID(AssemblyContext.class)) {
167                        case CompositionPackage.ASSEMBLY_CONTEXT__CONFIG_PARAMETER_USAGES_ASSEMBLY_CONTEXT:
168                                fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
169                                return;
170                }
171                super.notifyChanged(notification);
172        }
173 
174        /**
175         * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
176         * that can be created under this object.
177         * <!-- begin-user-doc -->
178         * <!-- end-user-doc -->
179         * @generated
180         */
181        @Override
182        protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
183                super.collectNewChildDescriptors(newChildDescriptors, object);
184 
185                newChildDescriptors.add
186                        (createChildParameter
187                                (CompositionPackage.Literals.ASSEMBLY_CONTEXT__CONFIG_PARAMETER_USAGES_ASSEMBLY_CONTEXT,
188                                 ParameterFactory.eINSTANCE.createVariableUsage()));
189        }
190 
191        /**
192         * Return the resource locator for this item provider's resources.
193         * <!-- begin-user-doc -->
194         * <!-- end-user-doc -->
195         * @generated
196         */
197        @Override
198        public ResourceLocator getResourceLocator() {
199                return PalladioComponentModelEditPlugin.INSTANCE;
200        }
201 
202}

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