1 18 package org.apache.batik.parser; 19 20 26 public class DefaultPathHandler implements PathHandler { 27 28 31 public final static PathHandler INSTANCE 32 = new DefaultPathHandler(); 33 34 37 protected DefaultPathHandler() { 38 } 39 40 43 public void startPath() throws ParseException { 44 } 45 46 49 public void endPath() throws ParseException { 50 } 51 52 55 public void movetoRel(float x, float y) throws ParseException { 56 } 57 58 61 public void movetoAbs(float x, float y) throws ParseException { 62 } 63 64 67 public void closePath() throws ParseException { 68 } 69 70 73 public void linetoRel(float x, float y) throws ParseException { 74 } 75 76 79 public void linetoAbs(float x, float y) throws ParseException { 80 } 81 82 85 public void linetoHorizontalRel(float x) throws ParseException { 86 } 87 88 91 public void linetoHorizontalAbs(float x) throws ParseException { 92 } 93 94 97 public void linetoVerticalRel(float y) throws ParseException { 98 } 99 100 103 public void linetoVerticalAbs(float y) throws ParseException { 104 } 105 106 110 public void curvetoCubicRel(float x1, float y1, 111 float x2, float y2, 112 float x, float y) throws ParseException { 113 } 114 115 119 public void curvetoCubicAbs(float x1, float y1, 120 float x2, float y2, 121 float x, float y) throws ParseException { 122 } 123 124 128 public void curvetoCubicSmoothRel(float x2, float y2, 129 float x, float y) throws ParseException { 130 } 131 132 136 public void curvetoCubicSmoothAbs(float x2, float y2, 137 float x, float y) throws ParseException { 138 } 139 140 144 public void curvetoQuadraticRel(float x1, float y1, 145 float x, float y) throws ParseException { 146 } 147 148 152 public void curvetoQuadraticAbs(float x1, float y1, 153 float x, float y) throws ParseException { 154 } 155 156 159 public void curvetoQuadraticSmoothRel(float x, float y) 160 throws ParseException { 161 } 162 163 166 public void curvetoQuadraticSmoothAbs(float x, float y) 167 throws ParseException { 168 } 169 170 174 public void arcRel(float rx, float ry, 175 float xAxisRotation, 176 boolean largeArcFlag, boolean sweepFlag, 177 float x, float y) throws ParseException { 178 } 179 180 184 public void arcAbs(float rx, float ry, 185 float xAxisRotation, 186 boolean largeArcFlag, boolean sweepFlag, 187 float x, float y) throws ParseException { 188 } 189 } 190 | Popular Tags |