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

COVERAGE SUMMARY FOR SOURCE FILE [NumericLiteralItemProvider.java]

nameclass, %method, %block, %line, %
NumericLiteralItemProvider.java0%   (0/1)0%   (0/6)0%   (0/54)0%   (0/15)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class NumericLiteralItemProvider0%   (0/1)0%   (0/6)0%   (0/54)0%   (0/15)
NumericLiteralItemProvider (AdapterFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
collectNewChildDescriptors (Collection, Object): void 0%   (0/1)0%   (0/5)0%   (0/2)
getPropertyDescriptors (Object): List 0%   (0/1)0%   (0/10)0%   (0/3)
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>
3 * </copyright>
4 *
5 * $Id$
6 */
7package de.uka.ipd.sdq.stoex.provider;
8 
9 
10import java.util.Collection;
11import java.util.List;
12 
13import org.eclipse.emf.common.notify.AdapterFactory;
14import org.eclipse.emf.common.notify.Notification;
15import org.eclipse.emf.common.util.ResourceLocator;
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.stoex.NumericLiteral;
24import de.uka.ipd.sdq.units.provider.UnitCarryingElementItemProvider;
25 
26/**
27 * This is the item provider adapter for a {@link de.uka.ipd.sdq.stoex.NumericLiteral} object.
28 * <!-- begin-user-doc -->
29 * <!-- end-user-doc -->
30 * @generated
31 */
32public class NumericLiteralItemProvider
33        extends UnitCarryingElementItemProvider
34        implements        
35                IEditingDomainItemProvider,        
36                IStructuredItemContentProvider,        
37                ITreeItemContentProvider,        
38                IItemLabelProvider,        
39                IItemPropertySource {
40        /**
41         * <!-- begin-user-doc -->
42         * <!-- end-user-doc -->
43         * @generated
44         */
45        public static final String copyright = "Copyright 2007-2009, SDQ, IPD, U Karlsruhe";
46 
47        /**
48         * This constructs an instance from a factory and a notifier.
49         * <!-- begin-user-doc -->
50         * <!-- end-user-doc -->
51         * @generated
52         */
53        public NumericLiteralItemProvider(AdapterFactory adapterFactory) {
54                super(adapterFactory);
55        }
56 
57        /**
58         * This returns the property descriptors for the adapted class.
59         * <!-- begin-user-doc -->
60         * <!-- end-user-doc -->
61         * @generated
62         */
63        @Override
64        public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) {
65                if (itemPropertyDescriptors == null) {
66                        super.getPropertyDescriptors(object);
67 
68                }
69                return itemPropertyDescriptors;
70        }
71 
72        /**
73         * This returns the label text for the adapted class.
74         * <!-- begin-user-doc -->
75         * <!-- end-user-doc -->
76         * @generated
77         */
78        @Override
79        public String getText(Object object) {
80                String label = ((NumericLiteral)object).getUnitSpecification();
81                return label == null || label.length() == 0 ?
82                        getString("_UI_NumericLiteral_type") :
83                        getString("_UI_NumericLiteral_type") + " " + label;
84        }
85 
86        /**
87         * This handles model notifications by calling {@link #updateChildren} to update any cached
88         * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
89         * <!-- begin-user-doc -->
90         * <!-- end-user-doc -->
91         * @generated
92         */
93        @Override
94        public void notifyChanged(Notification notification) {
95                updateChildren(notification);
96                super.notifyChanged(notification);
97        }
98 
99        /**
100         * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
101         * that can be created under this object.
102         * <!-- begin-user-doc -->
103         * <!-- end-user-doc -->
104         * @generated
105         */
106        @Override
107        protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
108                super.collectNewChildDescriptors(newChildDescriptors, object);
109        }
110 
111        /**
112         * Return the resource locator for this item provider's resources.
113         * <!-- begin-user-doc -->
114         * <!-- end-user-doc -->
115         * @generated
116         */
117        @Override
118        public ResourceLocator getResourceLocator() {
119                return StoexEditPlugin.INSTANCE;
120        }
121 
122}

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