org.adempiere.apps.graph.BarGraph:
* fixed indentation * fixed warnings
This commit is contained in:
parent
9ae07a2192
commit
7ca5ab994f
|
@ -58,8 +58,10 @@ import org.jfree.data.category.DefaultCategoryDataset;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BarGraph.java,v 1.2 2006/07/30 00:51:28 jjanke Exp $
|
* @version $Id: BarGraph.java,v 1.2 2006/07/30 00:51:28 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
public class BarGraph extends CPanel implements ChartMouseListener //, ComponentListener //, ActionListener
|
public class BarGraph extends CPanel implements ChartMouseListener
|
||||||
{
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*/
|
*/
|
||||||
|
@ -89,8 +91,8 @@ public class BarGraph extends CPanel implements ChartMouseListener //, Component
|
||||||
//private Dimension m_size = null;
|
//private Dimension m_size = null;
|
||||||
/** Zero/Zero Coordibate point */
|
/** Zero/Zero Coordibate point */
|
||||||
private Point m_point0_0 = null;
|
private Point m_point0_0 = null;
|
||||||
/** Layout */
|
// /** Layout */
|
||||||
private BarGraphLayout m_layout = new BarGraphLayout(this);
|
// private BarGraphLayout m_layout = new BarGraphLayout(this);
|
||||||
|
|
||||||
/** Logger */
|
/** Logger */
|
||||||
private static CLogger log = CLogger.getCLogger (BarGraph.class);
|
private static CLogger log = CLogger.getCLogger (BarGraph.class);
|
||||||
|
@ -99,8 +101,8 @@ public class BarGraph extends CPanel implements ChartMouseListener //, Component
|
||||||
private String m_X_AxisLabel = "X Axis";
|
private String m_X_AxisLabel = "X Axis";
|
||||||
/** Y Axis Label */
|
/** Y Axis Label */
|
||||||
private String m_Y_AxisLabel = "Y Axis";
|
private String m_Y_AxisLabel = "Y Axis";
|
||||||
/** Y Axis Max */
|
// /** Y Axis Max */
|
||||||
private double m_Y_Max = 0;
|
// private double m_Y_Max = 0;
|
||||||
/** Y Axis Target Line */
|
/** Y Axis Target Line */
|
||||||
private double m_Y_Target = 0;
|
private double m_Y_Target = 0;
|
||||||
/** Y Axis Target Line Label */
|
/** Y Axis Target Line Label */
|
||||||
|
|
Loading…
Reference in New Issue