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