package org.apache.batik.parser; public interface NumberListHandler { void endNumber() throws ParseException; void endNumberList() throws ParseException; void numberValue(float f) throws ParseException; void startNumber() throws ParseException; void startNumberList() throws ParseException; }