1 18 package org.apache.batik.parser; 19 20 26 public class DefaultTransformListHandler implements TransformListHandler { 27 28 31 public final static TransformListHandler INSTANCE 32 = new DefaultTransformListHandler(); 33 34 37 protected DefaultTransformListHandler() { 38 } 39 40 43 public void startTransformList() throws ParseException { 44 } 45 46 50 public void matrix(float a, float b, float c, float d, float e, float f) 51 throws ParseException { 52 } 53 54 57 public void rotate(float theta) throws ParseException { 58 } 59 60 63 public void rotate(float theta, float cx, float cy) throws ParseException { 64 } 65 66 69 public void translate(float tx) throws ParseException { 70 } 71 72 75 public void translate(float tx, float ty) throws ParseException { 76 } 77 78 81 public void scale(float sx) throws ParseException { 82 } 83 84 87 public void scale(float sx, float sy) throws ParseException { 88 } 89 90 93 public void skewX(float skx) throws ParseException { 94 } 95 96 99 public void skewY(float sky) throws ParseException { 100 } 101 102 105 public void endTransformList() throws ParseException { 106 } 107 } 108 | Popular Tags |