Package org.apache.batik.parser
Class DefaultAngleHandler
- java.lang.Object
-
- org.apache.batik.parser.DefaultAngleHandler
-
- All Implemented Interfaces:
AngleHandler
public class DefaultAngleHandler extends java.lang.Object implements AngleHandler
This class provides an adapter for AngleHandler
-
-
Field Summary
Fields Modifier and Type Field Description static AngleHandler
INSTANCE
The only instance of this class.
-
Constructor Summary
Constructors Modifier Constructor Description protected
DefaultAngleHandler()
This class does not need to be instantiated.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
angleValue(float v)
ImplementsAngleHandler.angleValue(float)
.void
deg()
ImplementsAngleHandler.deg()
.void
endAngle()
ImplementsAngleHandler.endAngle()
.void
grad()
ImplementsAngleHandler.grad()
.void
rad()
ImplementsAngleHandler.rad()
.void
startAngle()
ImplementsAngleHandler.startAngle()
.
-
-
-
Field Detail
-
INSTANCE
public static final AngleHandler INSTANCE
The only instance of this class.
-
-
Method Detail
-
startAngle
public void startAngle() throws ParseException
ImplementsAngleHandler.startAngle()
.- Specified by:
startAngle
in interfaceAngleHandler
- Throws:
ParseException
- if an error occured while processing the angle
-
angleValue
public void angleValue(float v) throws ParseException
ImplementsAngleHandler.angleValue(float)
.- Specified by:
angleValue
in interfaceAngleHandler
- Throws:
ParseException
- if an error occured while processing the angle
-
deg
public void deg() throws ParseException
ImplementsAngleHandler.deg()
.- Specified by:
deg
in interfaceAngleHandler
- Throws:
ParseException
- if an error occured while processing the angle
-
grad
public void grad() throws ParseException
ImplementsAngleHandler.grad()
.- Specified by:
grad
in interfaceAngleHandler
- Throws:
ParseException
- if an error occured while processing the angle
-
rad
public void rad() throws ParseException
ImplementsAngleHandler.rad()
.- Specified by:
rad
in interfaceAngleHandler
- Throws:
ParseException
- if an error occured while processing the angle
-
endAngle
public void endAngle() throws ParseException
ImplementsAngleHandler.endAngle()
.- Specified by:
endAngle
in interfaceAngleHandler
- Throws:
ParseException
- if an error occured while processing the angle
-
-