1 18 package org.apache.batik.parser; 19 20 28 public interface ClockHandler { 29 33 void startClock() throws ParseException; 34 35 39 void intValue(int v) throws ParseException; 40 41 45 void colon() throws ParseException; 46 47 51 void dot() throws ParseException; 52 53 57 void h() throws ParseException; 58 59 63 void min() throws ParseException; 64 65 69 void s() throws ParseException; 70 71 75 void ms() throws ParseException; 76 77 81 void endClock() throws ParseException; 82 } 83 | Popular Tags |