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

COVERAGE SUMMARY FOR SOURCE FILE [RawRecorder.java]

nameclass, %method, %block, %line, %
RawRecorder.java0%   (0/1)0%   (0/4)0%   (0/18)0%   (0/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RawRecorder0%   (0/1)0%   (0/4)0%   (0/18)0%   (0/8)
RawRecorder (IRawWriteStrategy): void 0%   (0/1)0%   (0/4)0%   (0/2)
flush (): void 0%   (0/1)0%   (0/4)0%   (0/2)
initialize (MetaDataInit): void 0%   (0/1)0%   (0/5)0%   (0/2)
processData (PipeData): void 0%   (0/1)0%   (0/5)0%   (0/2)

1package de.uka.ipd.sdq.pipesandfilters.framework.recorder;
2 
3import de.uka.ipd.sdq.pipesandfilters.framework.MetaDataInit;
4import de.uka.ipd.sdq.pipesandfilters.framework.PipeData;
5 
6/**
7 * A RawRecorder is responsible of recording the raw measurements using a
8 * specified WriteStrategy. No aggregations of the possibly filtered
9 * data are performed.
10 * 
11 * @author Baum
12 * 
13 */
14public class RawRecorder extends Recorder {
15        
16        /**
17         * The constructor for a raw data recorder.
18         * 
19         * @param writeStrategy The write strategy of the recorder.
20         */
21        public RawRecorder(IRawWriteStrategy writeStrategy) {
22                super(writeStrategy);
23        }
24 
25        /**
26         * This method initializes the WriteStrategy with the given meta data.
27         * 
28         * @param metaData
29         *            The meta data of the measurement.
30         */
31        public void initialize(MetaDataInit metaData) {
32                writeStrategy.initialize(metaData);
33        }
34 
35        /**
36         * This method tells the WriteStrategy to flush all measurements of the
37         * current experiment run.
38         */
39        public void flush() {
40                writeStrategy.flush();
41        }
42 
43        /**
44         * This method forwards the raw measurement data to the specified
45         * WriteStrategy.
46         */
47        public void processData(PipeData data) {
48                writeStrategy.writeData(data);
49        }
50}

[all classes][de.uka.ipd.sdq.pipesandfilters.framework.recorder]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov