| 1 | /** |
| 2 | * |
| 3 | */ |
| 4 | package de.uka.ipd.sdq.sensorframework.dao.file.entities; |
| 5 | |
| 6 | import de.uka.ipd.sdq.sensorframework.entities.ScalabilityMeasurement; |
| 7 | import de.uka.ipd.sdq.sensorframework.entities.ScalabilitySensor; |
| 8 | |
| 9 | /** |
| 10 | * @author Ihssane El-Oudghiri |
| 11 | * |
| 12 | * TODO Kommentare |
| 13 | * TODO Warum wird hier nicht TimeSpanSensorAndMeasurement |
| 14 | * referenziert?? |
| 15 | * |
| 16 | */ |
| 17 | public class ScalabilityMeasurementImpl |
| 18 | extends MeasurementImpl |
| 19 | implements ScalabilityMeasurement { |
| 20 | |
| 21 | private Double[] params; |
| 22 | |
| 23 | public ScalabilityMeasurementImpl(long id, double eventTime, Double[] params) { |
| 24 | super(id, eventTime); |
| 25 | this.params = params; |
| 26 | } |
| 27 | |
| 28 | public Double[] getParameters() { |
| 29 | return params; |
| 30 | } |
| 31 | |
| 32 | public ScalabilitySensor getSensor() { |
| 33 | throw new UnsupportedOperationException(); |
| 34 | } |
| 35 | |
| 36 | public void setParameters(Double[] value) { |
| 37 | this.params = value; |
| 38 | } |
| 39 | |
| 40 | public void setSensor(ScalabilitySensor value) { |
| 41 | throw new UnsupportedOperationException(); |
| 42 | } |
| 43 | |
| 44 | } |