org.apache.batik.parser

Interface AngleHandler

public interface AngleHandler

This interface must be implemented and then registred as the handler of a AngleParser instance in order to be notified of parsing events.
Method Summary
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

angleValue

public void angleValue(float v)
Invoked when a float value has been parsed.

Throws: ParseException if an error occured while processing the angle

deg

public void deg()
Invoked when 'deg' has been parsed.

Throws: ParseException if an error occured while processing the angle

endAngle

public void endAngle()
Invoked when the angle attribute parsing ends.

Throws: ParseException if an error occured while processing the angle

grad

public void grad()
Invoked when 'grad' has been parsed.

Throws: ParseException if an error occured while processing the angle

rad

public void rad()
Invoked when 'rad' has been parsed.

Throws: ParseException if an error occured while processing the angle

startAngle

public void startAngle()
Invoked when the angle attribute parsing starts.

Throws: ParseException if an error occured while processing the angle

Copyright B) 2007 Apache Software Foundation. All Rights Reserved.