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

COVERAGE SUMMARY FOR SOURCE FILE [ScalabilitySensorImpl.java]

nameclass, %method, %block, %line, %
ScalabilitySensorImpl.java0%   (0/1)0%   (0/4)0%   (0/32)0%   (0/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ScalabilitySensorImpl0%   (0/1)0%   (0/4)0%   (0/32)0%   (0/11)
ScalabilitySensorImpl (FileDAOFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
equals (Object): boolean 0%   (0/1)0%   (0/24)0%   (0/7)
getNbParams (): int 0%   (0/1)0%   (0/3)0%   (0/1)
serializeChildren (): void 0%   (0/1)0%   (0/1)0%   (0/1)

1package de.uka.ipd.sdq.sensorframework.dao.file.entities;
2 
3import de.uka.ipd.sdq.sensorframework.dao.file.FileDAOFactory;
4import de.uka.ipd.sdq.sensorframework.entities.ScalabilitySensor;
5/**
6 * @author Ihssane El-Oudghiri 
7 */
8public class ScalabilitySensorImpl extends SensorImpl implements ScalabilitySensor{
9 
10    private static final long serialVersionUID = 7666935674459276065L;
11    
12    private int nbParameters;
13    
14    public ScalabilitySensorImpl(final FileDAOFactory factory) {
15        super(factory);
16    }
17    
18    
19 
20    @Override
21    public boolean equals(final Object obj) {
22        if (!(obj instanceof ScalabilitySensorImpl)) {
23            return false;
24        }
25        ScalabilitySensorImpl s = (ScalabilitySensorImpl) obj;
26        if (!(sensorID == s.getSensorID() && sensorName.equals(s
27                .getSensorName()))) {
28            return false;
29        }
30        return true;
31    }
32 
33        public int getNbParams() {
34                return nbParameters;
35        }
36        
37        public void serializeChildren() {
38                // Nothing to serialize here
39        }
40}
41 
42 

[all classes][de.uka.ipd.sdq.sensorframework.dao.file.entities]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov