20 lines
579 B
Java
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);
|
|
}
|