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,DensityScatterPlot,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 Stringm_LabelXthe label for the X axis.protected Stringm_LabelYthe 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 voiddefineOptions()Adds options to the internal list of options.StringgetLabelX()Returns the label for the X axis.StringgetLabelY()Returns the label for the Y axis.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.StringlabelXTipText()Returns the tip text for this property.StringlabelYTipText()Returns the tip text for this property.voidsetLabelX(String value)Sets the label for the X axis.voidsetLabelY(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:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin 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:
getQuickInfoin interfaceQuickInfoSupporter- Overrides:
getQuickInfoin classAbstractChartGenerator<T extends org.jfree.data.general.Dataset>- Returns:
- null if no info available, otherwise short string
-
-