Class AbstractChartGeneratorWithAxisLabels<T extends org.jfree.data.general.Dataset>
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.visualization.jfreechart.chart.AbstractChartGenerator<T>
-
- adams.gui.visualization.jfreechart.chart.AbstractChartGeneratorWithAxisLabels<T>
-
- All Implemented Interfaces:
Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,QuickInfoSupporter
,SizeOfHandler
,Serializable
- Direct Known Subclasses:
BarChart
,BubbleChart
,ScatterPlot
,XYLineChart
public abstract class AbstractChartGeneratorWithAxisLabels<T extends org.jfree.data.general.Dataset> extends AbstractChartGenerator<T>
Ancestor for chart generators that support axis labels.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
m_LabelX
the label for the X axis.protected String
m_LabelY
the label for the Y axis.-
Fields inherited from class adams.gui.visualization.jfreechart.chart.AbstractChartGenerator
m_Legend, m_Title, m_ToolTips
-
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 AbstractChartGeneratorWithAxisLabels()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
defineOptions()
Adds options to the internal list of options.String
getLabelX()
Returns the label for the X axis.String
getLabelY()
Returns the label for the Y axis.String
getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.String
labelXTipText()
Returns the tip text for this property.String
labelYTipText()
Returns the tip text for this property.void
setLabelX(String value)
Sets the label for the X axis.void
setLabelY(String value)
Sets the label for the Y axis.-
Methods inherited from class adams.gui.visualization.jfreechart.chart.AbstractChartGenerator
check, doGenerate, generate, getLegend, getTitle, getToolTips, legendTipText, setLegend, setTitle, setToolTips, titleTipText, toolTipsTipText
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, 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
-
-
-
-
Method Detail
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceOptionHandler
- Overrides:
defineOptions
in classAbstractChartGenerator<T extends org.jfree.data.general.Dataset>
-
setLabelX
public void setLabelX(String value)
Sets the label for the X axis.- Parameters:
value
- the label
-
getLabelX
public String getLabelX()
Returns the label for the X axis.- Returns:
- the label
-
labelXTipText
public String labelXTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setLabelY
public void setLabelY(String value)
Sets the label for the Y axis.- Parameters:
value
- the label
-
getLabelY
public String getLabelY()
Returns the label for the Y axis.- Returns:
- the label
-
labelYTipText
public String labelYTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfo
in interfaceQuickInfoSupporter
- Overrides:
getQuickInfo
in classAbstractChartGenerator<T extends org.jfree.data.general.Dataset>
- Returns:
- null if no info available, otherwise short string
-
-