Deprecated Methods |
info.monitorenter.util.UIUtil.getLocationOnScreen(MouseEvent)
Replace with Point.getLocationOnScreen(MouseEvent) as soon as
jdk 1.6 is used. |
info.monitorenter.gui.chart.IAxis.getTitle()
use IAxis.getAxisTitle() and on the result
IAxis.AxisTitle.getTitle() . |
info.monitorenter.gui.chart.axis.AAxis.getTitle()
use AAxis.getAxisTitle() and on the result
IAxis.AxisTitle#getTitle() . |
info.monitorenter.gui.chart.IAxis.getTitlePainter()
this method might be dropped because the painter should be of
no concern. |
info.monitorenter.gui.chart.axis.AAxis.getTitlePainter()
this method might be dropped because the painter should be of
no concern. |
info.monitorenter.gui.chart.Chart2D.repaint()
use Chart2D.setRequestedRepaint(boolean) . |
info.monitorenter.gui.chart.Chart2D.repaint(int, int, int, int)
use Chart2D.setRequestedRepaint(boolean) . |
info.monitorenter.gui.chart.Chart2D.repaint(long)
use Chart2D.setRequestedRepaint(boolean) . |
info.monitorenter.gui.chart.Chart2D.repaint(long, int, int, int, int)
use Chart2D.setRequestedRepaint(boolean) . |
info.monitorenter.gui.chart.Chart2D.repaint(Rectangle)
use Chart2D.setRequestedRepaint(boolean) . |
info.monitorenter.gui.chart.Chart2D.setAxisX(AAxis)
use Chart2D.setAxisXBottom(AAxis, int) instead. |
info.monitorenter.gui.chart.Chart2D.setAxisY(AAxis)
use Chart2D.setAxisYLeft(AAxis, int) instead. |
info.monitorenter.gui.chart.IAxis.setTitle(String)
use IAxis.getAxisTitle() and on the result
IAxis.AxisTitle.setTitle(String) |
info.monitorenter.gui.chart.axis.AAxis.setTitle(String)
use AAxis.getAxisTitle() and on the result
IAxis.AxisTitle#setTitle(String) |
info.monitorenter.gui.chart.IAxis.setTitlePainter(IAxisTitlePainter)
use IAxis.getAxisTitle() and on the result
IAxis.AxisTitle.setTitlePainter(IAxisTitlePainter) . |
info.monitorenter.gui.chart.axis.AAxis.setTitlePainter(IAxisTitlePainter)
use AAxis.getAxisTitle() and on the result
IAxis.AxisTitle#setTitlePainter(IAxisTitlePainter)
instead. |
info.monitorenter.gui.chart.Chart2D.setToolTipCoords(boolean)
use Chart2D.setToolTipType(IToolTipType) with
Chart2D.ToolTipType.DATAVALUES instead. |
info.monitorenter.gui.chart.Chart2D.translateMousePosition(MouseEvent)
this method is a candidate for wrong behavior when using
multiple axes. |