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

COVERAGE SUMMARY FOR SOURCE FILE [EntryLevelSystemCallInfeasibilityConstraintBuilder.java]

nameclass, %method, %block, %line, %
EntryLevelSystemCallInfeasibilityConstraintBuilder.java0%   (0/1)0%   (0/2)0%   (0/26)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class EntryLevelSystemCallInfeasibilityConstraintBuilder0%   (0/1)0%   (0/2)0%   (0/26)0%   (0/4)
EntryLevelSystemCallInfeasibilityConstraintBuilder (EntryLevelSystemCall): void 0%   (0/1)0%   (0/6)0%   (0/3)
createInfeasibilityConstraint (String, Constraint$Direction, double): Infeasi... 0%   (0/1)0%   (0/20)0%   (0/1)

1package de.uka.ipd.sdq.dsexplore.qml.pcm.datastructures.builder;
2 
3import org.opt4j.core.InfeasibilityConstraint;
4import org.opt4j.core.Constraint.Direction;
5 
6import de.uka.ipd.sdq.dsexplore.qml.pcm.datastructures.EntryLevelSystemCallInfeasibilityConstraint;
7import de.uka.ipd.sdq.pcm.usagemodel.EntryLevelSystemCall;
8 
9public class EntryLevelSystemCallInfeasibilityConstraintBuilder extends InfeasibilityConstraintBuilder {
10 
11        private EntryLevelSystemCall entryLevelSystemCall;
12 
13        public EntryLevelSystemCallInfeasibilityConstraintBuilder(
14                        EntryLevelSystemCall entryLevelSystemCall) {
15                this.entryLevelSystemCall = entryLevelSystemCall;
16        }
17 
18        @Override
19        public InfeasibilityConstraint createInfeasibilityConstraint(String name,
20                        Direction direction, double limit) {
21                return new EntryLevelSystemCallInfeasibilityConstraint(name+"_"+this.entryLevelSystemCall.getId(), direction, limit, this.entryLevelSystemCall);
22        }
23 
24}

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