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

COVERAGE SUMMARY FOR SOURCE FILE [SignatureDependentInternalActionDescriptor.java]

nameclass, %method, %block, %line, %
SignatureDependentInternalActionDescriptor.java0%   (0/1)0%   (0/3)0%   (0/13)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SignatureDependentInternalActionDescriptor0%   (0/1)0%   (0/3)0%   (0/13)0%   (0/5)
SignatureDependentInternalActionDescriptor (ProcessingResourceType): void 0%   (0/1)0%   (0/4)0%   (0/2)
getResourceDemand (): String 0%   (0/1)0%   (0/5)0%   (0/1)
setCurrentSignature (Signature): void 0%   (0/1)0%   (0/4)0%   (0/2)

1package de.uka.ipd.sdq.pcm.transformations.builder.seff;
2 
3import de.uka.ipd.sdq.pcm.repository.Signature;
4import de.uka.ipd.sdq.pcm.resourcetype.ProcessingResourceType;
5 
6public abstract class SignatureDependentInternalActionDescriptor extends
7                AbstractInternalActionDescriptor implements ISignatureDependentAction {
8 
9        protected Signature currentSignature;
10 
11        public SignatureDependentInternalActionDescriptor(
12                        ProcessingResourceType resourceType) {
13                super(resourceType);
14        }
15 
16        /* (non-Javadoc)
17         * @see de.uka.sdq.pcm.transformations.builder.seff.ISignatureDependentAction#setCurrentSignature(de.uka.ipd.sdq.pcm.repository.Signature)
18         */
19        public void setCurrentSignature(Signature sig){
20                this.currentSignature = sig;
21        }
22        
23        @Override
24        public String getResourceDemand() {
25                return getDemand(currentSignature);
26        }
27 
28        protected abstract String getDemand(Signature signature);
29}

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