From: Nathaniel G. A. <nat...@us...> - 2004-06-09 01:43:28
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/designer/charts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21702/src/java/org/krysalis/jcharts/designer/charts Modified Files: DesignerChart.java Log Message: Index: DesignerChart.java =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/designer/charts/DesignerChart.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DesignerChart.java 9 Aug 2003 17:04:07 -0000 1.1 --- DesignerChart.java 9 Jun 2004 01:43:19 -0000 1.2 *************** *** 49,54 **** public abstract class DesignerChart { ! private int width; ! private int height; private String title; --- 49,54 ---- public abstract class DesignerChart { ! private int chartWidth; ! private int chartHeight; private String title; *************** *** 70,75 **** public DesignerChart( int width, int height ) { ! this.width= width; ! this.height= height; this.chartProperties= new ChartProperties(); --- 70,75 ---- public DesignerChart( int width, int height ) { ! this.chartWidth= width; ! this.chartHeight= height; this.chartProperties= new ChartProperties(); *************** *** 90,117 **** - public int getWidth() - { - return width; - } ! public void setWidth( int width ) { ! this.width = width; } ! ! ! public int getHeight() { ! return height; } ! ! ! public void setHeight( int height ) { ! this.height = height; } - - public String getTitle() { --- 90,112 ---- ! ! public int getChartHeight() { ! return chartHeight; } ! public void setChartHeight( int chartHeight ) { ! this.chartHeight = chartHeight; } ! public int getChartWidth() { ! return chartWidth; ! } ! public void setChartWidth( int chartWidth ) ! { ! this.chartWidth = chartWidth; } public String getTitle() { |