Package org.apache.batik.parser
Interface AngleHandler
-
- All Known Implementing Classes:
DefaultAngleHandler
public interface AngleHandlerThis interface must be implemented and then registred as the handler of aAngleParserinstance in order to be notified of parsing events.- Version:
- $Id: AngleHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidangleValue(float v)Invoked when a float value has been parsed.voiddeg()Invoked when 'deg' has been parsed.voidendAngle()Invoked when the angle attribute parsing ends.voidgrad()Invoked when 'grad' has been parsed.voidrad()Invoked when 'rad' has been parsed.voidstartAngle()Invoked when the angle attribute parsing starts.
-
-
-
Method Detail
-
startAngle
void startAngle() throws ParseExceptionInvoked when the angle attribute parsing starts.- Throws:
ParseException- if an error occured while processing the angle
-
angleValue
void angleValue(float v) throws ParseExceptionInvoked when a float value has been parsed.- Throws:
ParseException- if an error occured while processing the angle
-
deg
void deg() throws ParseException
Invoked when 'deg' has been parsed.- Throws:
ParseException- if an error occured while processing the angle
-
grad
void grad() throws ParseException
Invoked when 'grad' has been parsed.- Throws:
ParseException- if an error occured while processing the angle
-
rad
void rad() throws ParseException
Invoked when 'rad' has been parsed.- Throws:
ParseException- if an error occured while processing the angle
-
endAngle
void endAngle() throws ParseExceptionInvoked when the angle attribute parsing ends.- Throws:
ParseException- if an error occured while processing the angle
-
-