2026-03-17 13:31:18 -07:00

10 lines
218 B
Java

package org.apache.batik.parser;
public interface PointsHandler {
void endPoints() throws ParseException;
void point(float f, float f2) throws ParseException;
void startPoints() throws ParseException;
}