Package org.apache.batik.parser
Interface LengthListHandler
-
- All Superinterfaces:
LengthHandler
- All Known Implementing Classes:
AbstractSVGLengthList.LengthListBuilder
,DefaultLengthListHandler
,LengthArrayProducer
public interface LengthListHandler extends LengthHandler
This interface must be implemented and then registred as the handler of aLengthListParser
instance in order to be notified of parsing events.- Version:
- $Id: LengthListHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
endLengthList()
Invoked when the length attribute ends.void
startLengthList()
Invoked when the length list attribute starts.-
Methods inherited from interface org.apache.batik.parser.LengthHandler
cm, em, endLength, ex, in, lengthValue, mm, pc, percentage, pt, px, startLength
-
-
-
-
Method Detail
-
startLengthList
void startLengthList() throws ParseException
Invoked when the length list attribute starts.- Throws:
ParseException
- if an error occures while processing the length list.
-
endLengthList
void endLengthList() throws ParseException
Invoked when the length attribute ends.- Throws:
ParseException
- if an error occures while processing the length list.
-
-