1 18 package org.apache.batik.parser; 19 20 26 public class DefaultLengthHandler implements LengthHandler { 27 30 public final static LengthHandler INSTANCE = new DefaultLengthHandler(); 31 32 35 protected DefaultLengthHandler() { 36 } 37 38 41 public void startLength() throws ParseException { 42 } 43 44 47 public void lengthValue(float v) throws ParseException { 48 } 49 50 53 public void em() throws ParseException { 54 } 55 56 59 public void ex() throws ParseException { 60 } 61 62 65 public void in() throws ParseException { 66 } 67 68 71 public void cm() throws ParseException { 72 } 73 74 77 public void mm() throws ParseException { 78 } 79 80 83 public void pc() throws ParseException { 84 } 85 86 89 public void pt() throws ParseException { 90 } 91 92 95 public void px() throws ParseException { 96 } 97 98 101 public void percentage() throws ParseException { 102 } 103 104 107 public void endLength() throws ParseException { 108 } 109 } 110 | Popular Tags |