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

16 lines
328 B
Java

package org.apache.batik.parser;
public interface AngleHandler {
void angleValue(float f) throws ParseException;
void deg() throws ParseException;
void endAngle() throws ParseException;
void grad() throws ParseException;
void rad() throws ParseException;
void startAngle() throws ParseException;
}