Class AbstractRReportItem
- java.lang.Object
-
- de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.reportitems.AbstractRReportItem
-
- All Implemented Interfaces:
IReportItem
- Direct Known Subclasses:
AbstractGeneratedTextRReportItem,AbstractPlotReportItem,StaticTextReportItem
public abstract class AbstractRReportItem extends Object implements IReportItem
Abstract class describing a R report item.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_DESCRIPTIONThe default description for R report items.
-
Constructor Summary
Constructors Constructor Description AbstractRReportItem()Initializes a new report item with default description.AbstractRReportItem(String description)Initializes a new report item.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description StringgetDescription()abstract voidvisit(IReportRenderingVisitor renderingVisitor)Used by the visitor to display the report item.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.reportitems.IReportItem
generateData
-
-
-
-
Field Detail
-
DEFAULT_DESCRIPTION
public static final String DEFAULT_DESCRIPTION
The default description for R report items.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AbstractRReportItem
public AbstractRReportItem()
Initializes a new report item with default description.
-
AbstractRReportItem
public AbstractRReportItem(String description)
Initializes a new report item.- Parameters:
description- The description of the item.
-
-
Method Detail
-
getDescription
public String getDescription()
- Specified by:
getDescriptionin interfaceIReportItem- Returns:
- description of the content of the report item.
-
visit
public abstract void visit(IReportRenderingVisitor renderingVisitor)
Used by the visitor to display the report item. Used to render the report item.- Specified by:
visitin interfaceIReportItem- Parameters:
renderingVisitor- Visitor used for rendering the content of each item.
-
-