Class FixedTimestampRangePaintlet
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.core.AbstractPaintlet
-
- adams.gui.visualization.core.AbstractStrokePaintlet
-
- adams.gui.visualization.container.AbstractDataContainerPaintlet
-
- adams.gui.visualization.timeseries.AbstractTimeseriesPaintlet
-
- adams.gui.visualization.timeseries.FixedTimestampRangePaintlet
-
- All Implemented Interfaces:
Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,ShallowCopySupporter<Paintlet>
,SizeOfHandler
,Paintlet
,Serializable
public class FixedTimestampRangePaintlet extends AbstractTimeseriesPaintlet
Paintlet for highlighting a specific timestamp range with a background color.
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-stroke-thickness <float> (property: strokeThickness) The thickness of the stroke. default: 1.0 minimum: 0.01
-start-timestamp <adams.core.base.BaseDateTime> (property: startTimestamp) The timestamp indicating the start of the range. default: NOW
-end-timestamp <adams.core.base.BaseDateTime> (property: endTimestamp) The timestamp indicating the end of the range. default: NOW
-color <java.awt.Color> (property: color) The color of the selected range. default: #D8D8D8
- Version:
- $Revision: 7297 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Color
m_Color
the color to paint the point with.protected BaseDateTime
m_EndTimestamp
the end timestamp of the range.protected BaseDateTime
m_StartTimestamp
the start timestamp of the range.-
Fields inherited from class adams.gui.visualization.core.AbstractStrokePaintlet
m_StrokeThickness
-
Fields inherited from class adams.gui.visualization.core.AbstractPaintlet
m_Enabled, m_Initializing, m_Panel, m_RepaintOnChange
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description FixedTimestampRangePaintlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
colorTipText()
Returns the tip text for this property.void
defineOptions()
Adds options to the internal list of options.protected void
doPerformPaint(Graphics g, PaintEvent.PaintMoment moment)
The paint routine of the paintlet.String
endTimestampTipText()
Returns the tip text for this property.Color
getColor()
Returns the currently set color to paint the range with.BaseDateTime
getEndTimestamp()
Returns the timestamp for the end of the range.PaintEvent.PaintMoment
getPaintMoment()
Returns when this paintlet is to be executed.BaseDateTime
getStartTimestamp()
Returns the timestamp for the start of the range.String
globalInfo()
Returns a string describing the object.void
setColor(Color value)
Sets the color to paint the range with.void
setEndTimestamp(BaseDateTime value)
Sets the timestamp for the end of the range.void
setStartTimestamp(BaseDateTime value)
Sets the timestamp for the start of the range.String
startTimestampTipText()
Returns the tip text for this property.-
Methods inherited from class adams.gui.visualization.timeseries.AbstractTimeseriesPaintlet
getTimeseriesPanel
-
Methods inherited from class adams.gui.visualization.container.AbstractDataContainerPaintlet
getDataContainerPanel
-
Methods inherited from class adams.gui.visualization.core.AbstractStrokePaintlet
applyStroke, getStrokeThickness, getStrokeWidth, performPaint, setStrokeThickness, strokeThicknessTipText
-
Methods inherited from class adams.gui.visualization.core.AbstractPaintlet
canPaint, finishInit, forCommandLine, forName, getPaintlets, getPanel, getPlot, getRepaintOnChange, hasPanel, initialize, isEnabled, isInitializing, memberChanged, memberChanged, paint, repaint, setEnabled, setPanel, setPanel, setRepaintOnChange, shallowCopy, shallowCopy, updatePanel
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, getDefaultLoggingLevel, getOptionManager, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_StartTimestamp
protected BaseDateTime m_StartTimestamp
the start timestamp of the range.
-
m_EndTimestamp
protected BaseDateTime m_EndTimestamp
the end timestamp of the range.
-
m_Color
protected Color m_Color
the color to paint the point with.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceGlobalInfoSupporter
- Specified by:
globalInfo
in classAbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceOptionHandler
- Overrides:
defineOptions
in classAbstractStrokePaintlet
-
setStartTimestamp
public void setStartTimestamp(BaseDateTime value)
Sets the timestamp for the start of the range.- Parameters:
value
- the timestamp
-
getStartTimestamp
public BaseDateTime getStartTimestamp()
Returns the timestamp for the start of the range.- Returns:
- the timestamp
-
startTimestampTipText
public String startTimestampTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setEndTimestamp
public void setEndTimestamp(BaseDateTime value)
Sets the timestamp for the end of the range.- Parameters:
value
- the timestamp
-
getEndTimestamp
public BaseDateTime getEndTimestamp()
Returns the timestamp for the end of the range.- Returns:
- the timestamp
-
endTimestampTipText
public String endTimestampTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setColor
public void setColor(Color value)
Sets the color to paint the range with.- Parameters:
value
- the color
-
getColor
public Color getColor()
Returns the currently set color to paint the range with.- Returns:
- the color
-
colorTipText
public String colorTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getPaintMoment
public PaintEvent.PaintMoment getPaintMoment()
Returns when this paintlet is to be executed.- Specified by:
getPaintMoment
in interfacePaintlet
- Specified by:
getPaintMoment
in classAbstractPaintlet
- Returns:
- when this paintlet is to be executed
-
doPerformPaint
protected void doPerformPaint(Graphics g, PaintEvent.PaintMoment moment)
The paint routine of the paintlet.- Specified by:
doPerformPaint
in classAbstractStrokePaintlet
- Parameters:
g
- the graphics context to use for paintingmoment
- whatPaintEvent.PaintMoment
is currently being painted
-
-