16 lines
328 B
Java
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;
|
|
}
|