1 18 package org.apache.batik.parser; 19 20 28 public interface LengthHandler { 29 34 void startLength() throws ParseException; 35 36 41 void lengthValue(float v) throws ParseException; 42 43 48 void em() throws ParseException; 49 50 55 void ex() throws ParseException; 56 57 62 void in() throws ParseException; 63 64 69 void cm() throws ParseException; 70 71 76 void mm() throws ParseException; 77 78 83 void pc() throws ParseException; 84 85 90 void pt() throws ParseException; 91 92 97 void px() throws ParseException; 98 99 104 void percentage() throws ParseException; 105 106 111 void endLength() throws ParseException; 112 } 113 | Popular Tags |