mxGraph 2.5.0.2


com.mxgraph.util.svg
Interface PointsHandler

All Known Implementing Classes:
AWTPolygonProducer, AWTPolylineProducer

public interface PointsHandler

This interface must be implemented and then registred as the handler of a PointsParser instance in order to be notified of parsing events.


Method Summary
 void endPoints()
          Invoked when the points attribute ends.
 void point(float x, float y)
          Invoked when a point has been parsed.
 void startPoints()
          Invoked when the points attribute starts.
 

Method Detail

startPoints

void startPoints()
                 throws ParseException
Invoked when the points attribute starts.

Throws:
ParseException - if an error occured while processing the points

point

void point(float x,
           float y)
           throws ParseException
Invoked when a point has been parsed.

Parameters:
x - the x coordinate of the point
y - the y coordinate of the point
Throws:
ParseException - if an error occured while processing the points

endPoints

void endPoints()
               throws ParseException
Invoked when the points attribute ends.

Throws:
ParseException - if an error occured while processing the points

mxGraph 2.5.0.2


Copyright (c) 2010 Gaudenz Alder, David Benson. All rights reserved.