1 18 package org.apache.batik.parser; 19 20 26 public class DefaultFragmentIdentifierHandler 27 extends DefaultPreserveAspectRatioHandler 28 implements FragmentIdentifierHandler { 29 30 33 public final static FragmentIdentifierHandler INSTANCE 34 = new DefaultFragmentIdentifierHandler(); 35 36 39 protected DefaultFragmentIdentifierHandler() { 40 } 41 42 45 public void startFragmentIdentifier() throws ParseException { 46 } 47 48 54 public void idReference(String s) throws ParseException { 55 } 56 57 66 public void viewBox(float x, float y, float width, float height) 67 throws ParseException { 68 } 69 70 75 public void startViewTarget() throws ParseException { 76 } 77 78 84 public void viewTarget(String name) throws ParseException { 85 } 86 87 92 public void endViewTarget() throws ParseException { 93 } 94 95 98 public void startTransformList() throws ParseException { 99 } 100 101 105 public void matrix(float a, float b, float c, float d, float e, float f) 106 throws ParseException { 107 } 108 109 112 public void rotate(float theta) throws ParseException { 113 } 114 115 118 public void rotate(float theta, float cx, float cy) throws ParseException { 119 } 120 121 124 public void translate(float tx) throws ParseException { 125 } 126 127 130 public void translate(float tx, float ty) throws ParseException { 131 } 132 133 136 public void scale(float sx) throws ParseException { 137 } 138 139 142 public void scale(float sx, float sy) throws ParseException { 143 } 144 145 148 public void skewX(float skx) throws ParseException { 149 } 150 151 154 public void skewY(float sky) throws ParseException { 155 } 156 157 160 public void endTransformList() throws ParseException { 161 } 162 163 169 public void zoomAndPan(boolean magnify) { 170 } 171 172 175 public void endFragmentIdentifier() throws ParseException { 176 } 177 } 178 | Popular Tags |