Package org.apache.batik.parser
Interface NumberListHandler
-
- All Known Implementing Classes:
AbstractSVGNumberList.NumberListBuilder,DefaultNumberListHandler,FloatArrayProducer
public interface NumberListHandlerAn handler interface for parsing NumberLists.- Version:
- $Id: NumberListHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendNumber()Invoked when the number attribute ends.voidendNumberList()Invoked when the number list attribute ends.voidnumberValue(float v)Invoked when a float value has been parsed.voidstartNumber()Invoked when the number attribute starts.voidstartNumberList()Invoked when the number list attribute starts.
-
-
-
Method Detail
-
startNumberList
void startNumberList() throws ParseExceptionInvoked when the number list attribute starts.- Throws:
ParseException- if an error occures while processing the number list.
-
endNumberList
void endNumberList() throws ParseExceptionInvoked when the number list attribute ends.- Throws:
ParseException- if an error occures while processing the number list.
-
startNumber
void startNumber() throws ParseExceptionInvoked when the number attribute starts.- Throws:
ParseException- if an error occures while processing the number
-
endNumber
void endNumber() throws ParseExceptionInvoked when the number attribute ends.- Throws:
ParseException- if an error occures while processing the number
-
numberValue
void numberValue(float v) throws ParseExceptionInvoked when a float value has been parsed.- Throws:
ParseException- if an error occures while processing the number
-
-