niagara-ax/decompiled/org/apache/batik/parser/FragmentIdentifierHandler.java
2026-03-17 13:31:18 -07:00

20 lines
579 B
Java

package org.apache.batik.parser;
public interface FragmentIdentifierHandler extends PreserveAspectRatioHandler, TransformListHandler {
void endFragmentIdentifier() throws ParseException;
void endViewTarget() throws ParseException;
void idReference(String str) throws ParseException;
void startFragmentIdentifier() throws ParseException;
void startViewTarget() throws ParseException;
void viewBox(float f, float f2, float f3, float f4) throws ParseException;
void viewTarget(String str) throws ParseException;
void zoomAndPan(boolean z);
}