1 18 package org.apache.batik.parser; 19 20 28 public interface PreserveAspectRatioHandler { 29 34 void startPreserveAspectRatio() throws ParseException; 35 36 41 void none() throws ParseException; 42 43 48 void xMaxYMax() throws ParseException; 49 50 55 void xMaxYMid() throws ParseException; 56 57 62 void xMaxYMin() throws ParseException; 63 64 69 void xMidYMax() throws ParseException; 70 71 76 void xMidYMid() throws ParseException; 77 78 83 void xMidYMin() throws ParseException; 84 85 90 void xMinYMax() throws ParseException; 91 92 97 void xMinYMid() throws ParseException; 98 99 104 void xMinYMin() throws ParseException; 105 106 111 void meet() throws ParseException; 112 113 118 void slice() throws ParseException; 119 120 125 void endPreserveAspectRatio() throws ParseException; 126 } 127 | Popular Tags |