1 18 package org.apache.batik.parser; 19 20 26 public class DefaultPreserveAspectRatioHandler 27 implements PreserveAspectRatioHandler { 28 31 public final static PreserveAspectRatioHandler INSTANCE 32 = new DefaultPreserveAspectRatioHandler(); 33 34 37 protected DefaultPreserveAspectRatioHandler() { 38 } 39 40 44 public void startPreserveAspectRatio() throws ParseException { 45 } 46 47 50 public void none() throws ParseException { 51 } 52 53 56 public void xMaxYMax() throws ParseException { 57 } 58 59 62 public void xMaxYMid() throws ParseException { 63 } 64 65 68 public void xMaxYMin() throws ParseException { 69 } 70 71 74 public void xMidYMax() throws ParseException { 75 } 76 77 80 public void xMidYMid() throws ParseException { 81 } 82 83 86 public void xMidYMin() throws ParseException { 87 } 88 89 92 public void xMinYMax() throws ParseException { 93 } 94 95 98 public void xMinYMid() throws ParseException { 99 } 100 101 104 public void xMinYMin() throws ParseException { 105 } 106 107 110 public void meet() throws ParseException { 111 } 112 113 116 public void slice() throws ParseException { 117 } 118 119 122 public void endPreserveAspectRatio() throws ParseException { 123 } 124 } 125 | Popular Tags |