1 18 package org.apache.batik.parser; 19 20 26 public class DefaultAngleHandler implements AngleHandler { 27 30 public final static AngleHandler INSTANCE 31 = new DefaultAngleHandler(); 32 33 36 protected DefaultAngleHandler() { 37 } 38 39 42 public void startAngle() throws ParseException { 43 } 44 45 48 public void angleValue(float v) throws ParseException { 49 } 50 51 54 public void deg() throws ParseException { 55 } 56 57 60 public void grad() throws ParseException { 61 } 62 63 66 public void rad() throws ParseException { 67 } 68 69 72 public void endAngle() throws ParseException { 73 } 74 } 75 | Popular Tags |