| 1 | package de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.views; |
| 2 | |
| 3 | import de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.reports.RReport; |
| 4 | import de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.reports.TimeSeriesReport; |
| 5 | |
| 6 | /**View for TimeSeriesReport in HTML format. |
| 7 | * @author groenda |
| 8 | */ |
| 9 | public class TimeSeriesHtmlReportView extends AbstractHtmlRReportView { |
| 10 | |
| 11 | /** Identifier to allow the use of the time series view. */ |
| 12 | public static final String RREPORTVIEW_ID = |
| 13 | "de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.views.TimeSeriesHtmlView"; |
| 14 | |
| 15 | /** The report associated with this view. */ |
| 16 | private RReport report = new TimeSeriesReport(); |
| 17 | |
| 18 | /** {@inheritDoc} |
| 19 | */ |
| 20 | @Override |
| 21 | public RReport getReport() { |
| 22 | return report; |
| 23 | } |
| 24 | } |