Update of /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/imageMap
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10813/src/java/org/krysalis/jcharts/imageMap
Modified Files:
CircleMapArea.java ImageMapArea.java
Log Message:
Opened up the API some because not everyone is going to access this through jsp.
Index: CircleMapArea.java
===================================================================
RCS file: /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/imageMap/CircleMapArea.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** CircleMapArea.java 17 May 2003 16:59:18 -0000 1.1
--- CircleMapArea.java 19 Nov 2004 01:34:31 -0000 1.2
***************
*** 118,122 ****
! protected void getCoordinates( StringBuffer html )
{
html.append( this.x[ 0 ] + "," + this.y[ 0 ] + "," + this.radius );
--- 118,122 ----
! public void getCoordinates( StringBuffer html )
{
html.append( this.x[ 0 ] + "," + this.y[ 0 ] + "," + this.radius );
Index: ImageMapArea.java
===================================================================
RCS file: /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/imageMap/ImageMapArea.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ImageMapArea.java 17 May 2003 16:59:18 -0000 1.1
--- ImageMapArea.java 19 Nov 2004 01:34:31 -0000 1.2
***************
*** 108,112 ****
* @return AreaShape
***********************************************************************************/
! abstract AreaShape getAreaShape();
--- 108,112 ----
* @return AreaShape
***********************************************************************************/
! public abstract AreaShape getAreaShape();
***************
*** 187,191 ****
* @param html pass a reference to the StringBuffer so I can minimize Object creation
****************************************************************************************/
! protected void getCoordinates( StringBuffer html )
{
for( int i=0; i < this.x.length; i++ )
--- 187,191 ----
* @param html pass a reference to the StringBuffer so I can minimize Object creation
****************************************************************************************/
! public void getCoordinates( StringBuffer html )
{
for( int i=0; i < this.x.length; i++ )
|