Interface NumberListHandler

All Known Implementing Classes:
AbstractSVGNumberList.NumberListBuilder, DefaultNumberListHandler, FloatArrayProducer

public interface NumberListHandler
An handler interface for parsing NumberLists.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked when the number attribute ends.
    void
    Invoked when the number list attribute ends.
    void
    numberValue(float v)
    Invoked when a float value has been parsed.
    void
    Invoked when the number attribute starts.
    void
    Invoked when the number list attribute starts.
  • Method Details

    • startNumberList

      void startNumberList() throws ParseException
      Invoked when the number list attribute starts.
      Throws:
      ParseException - if an error occures while processing the number list.
    • endNumberList

      void endNumberList() throws ParseException
      Invoked when the number list attribute ends.
      Throws:
      ParseException - if an error occures while processing the number list.
    • startNumber

      void startNumber() throws ParseException
      Invoked when the number attribute starts.
      Throws:
      ParseException - if an error occures while processing the number
    • endNumber

      void endNumber() throws ParseException
      Invoked when the number attribute ends.
      Throws:
      ParseException - if an error occures while processing the number
    • numberValue

      void numberValue(float v) throws ParseException
      Invoked when a float value has been parsed.
      Throws:
      ParseException - if an error occures while processing the number