1 18 package org.apache.batik.parser; 19 20 28 public interface FragmentIdentifierHandler 29 extends PreserveAspectRatioHandler, 30 TransformListHandler { 31 32 37 void startFragmentIdentifier() throws ParseException; 38 39 45 void idReference(String s) throws ParseException; 46 47 56 void viewBox(float x, float y, float width, float height) 57 throws ParseException; 58 59 64 void startViewTarget() throws ParseException; 65 66 73 void viewTarget(String name) throws ParseException; 74 75 80 void endViewTarget() throws ParseException; 81 82 88 void zoomAndPan(boolean magnify); 89 90 95 void endFragmentIdentifier() throws ParseException; 96 } 97 | Popular Tags |