Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.batik.parser
Interface PointsHandler  view PointsHandler download PointsHandler.java

All Known Implementing Classes:
AWTPolylineProducer, DefaultPointsHandler

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.

Version:
$Id: PointsHandler.java,v 1.4 2005/03/27 08:58:35 cam Exp $

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

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


point

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


endPoints

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