1 18 package org.apache.batik.parser; 19 20 26 public interface NumberListHandler { 27 32 void startNumberList() throws ParseException; 33 34 39 void endNumberList() throws ParseException; 40 41 46 void startNumber() throws ParseException; 47 48 49 54 void endNumber() throws ParseException; 55 56 61 void numberValue(float v) throws ParseException; 62 } 63 | Popular Tags |