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

COVERAGE SUMMARY FOR SOURCE FILE [EObjectIDRespectingCopier.java]

nameclass, %method, %block, %line, %
EObjectIDRespectingCopier.java0%   (0/1)0%   (0/2)0%   (0/18)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class EObjectIDRespectingCopier0%   (0/1)0%   (0/2)0%   (0/18)0%   (0/5)
EObjectIDRespectingCopier (): void 0%   (0/1)0%   (0/3)0%   (0/1)
copyAttribute (EAttribute, EObject, EObject): void 0%   (0/1)0%   (0/15)0%   (0/4)

1package de.uka.ipd.sdq.identifier.util;
2 
3import org.eclipse.emf.ecore.EAttribute;
4import org.eclipse.emf.ecore.EObject;
5import org.eclipse.emf.ecore.util.EcoreUtil;
6import org.eclipse.emf.ecore.util.EcoreUtil.Copier;
7 
8import de.uka.ipd.sdq.identifier.Identifier;
9import de.uka.ipd.sdq.identifier.IdentifierPackage;
10 
11public class EObjectIDRespectingCopier extends Copier {
12 
13        /**
14         * 
15         */
16        private static final long serialVersionUID = -5643746361216087434L;
17 
18        @Override
19        protected void copyAttribute(EAttribute attribute, EObject object,
20                        EObject copyEObject) {
21                if (attribute == IdentifierPackage.eINSTANCE.getIdentifier_Id()) {
22                        ((Identifier) copyEObject).setId(EcoreUtil.generateUUID());
23                } else {
24                        super.copyAttribute(attribute, object, copyEObject);
25                }
26        }
27 
28}

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