10 lines
218 B
Java
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;
|
|
}
|