Interface NumberListHandler
- All Known Implementing Classes:
AbstractSVGNumberList.NumberListBuilder, DefaultNumberListHandler, FloatArrayProducer
public interface NumberListHandler
An handler interface for parsing NumberLists.
-
Method Summary
Modifier and TypeMethodDescriptionvoidInvoked when the number attribute ends.voidInvoked when the number list attribute ends.voidnumberValue(float v) Invoked when a float value has been parsed.voidInvoked when the number attribute starts.voidInvoked when the number list attribute starts.
-
Method Details
-
startNumberList
Invoked when the number list attribute starts.- Throws:
ParseException- if an error occures while processing the number list.
-
endNumberList
Invoked when the number list attribute ends.- Throws:
ParseException- if an error occures while processing the number list.
-
startNumber
Invoked when the number attribute starts.- Throws:
ParseException- if an error occures while processing the number
-
endNumber
Invoked when the number attribute ends.- Throws:
ParseException- if an error occures while processing the number
-
numberValue
Invoked when a float value has been parsed.- Throws:
ParseException- if an error occures while processing the number
-