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 [EntryLevelSystemCallSatisfactionConstraintBuilder.java]

nameclass, %method, %block, %line, %
EntryLevelSystemCallSatisfactionConstraintBuilder.java0%   (0/1)0%   (0/2)0%   (0/27)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class EntryLevelSystemCallSatisfactionConstraintBuilder0%   (0/1)0%   (0/2)0%   (0/27)0%   (0/4)
EntryLevelSystemCallSatisfactionConstraintBuilder (EntryLevelSystemCall): void 0%   (0/1)0%   (0/6)0%   (0/3)
createSatisfactionConstraint (String, Constraint$Direction, double, Objective... 0%   (0/1)0%   (0/21)0%   (0/1)

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

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