1 18 package org.apache.batik.parser; 19 20 28 public interface AngleHandler { 29 33 void startAngle() throws ParseException; 34 35 39 void angleValue(float v) throws ParseException; 40 41 45 void deg() throws ParseException; 46 47 51 void grad() throws ParseException; 52 53 57 void rad() throws ParseException; 58 59 63 void endAngle() throws ParseException; 64 } 65 | Popular Tags |