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

32 lines
716 B
Java

package org.apache.batik.parser;
public interface PreserveAspectRatioHandler {
void endPreserveAspectRatio() throws ParseException;
void meet() throws ParseException;
void none() throws ParseException;
void slice() throws ParseException;
void startPreserveAspectRatio() throws ParseException;
void xMaxYMax() throws ParseException;
void xMaxYMid() throws ParseException;
void xMaxYMin() throws ParseException;
void xMidYMax() throws ParseException;
void xMidYMid() throws ParseException;
void xMidYMin() throws ParseException;
void xMinYMax() throws ParseException;
void xMinYMid() throws ParseException;
void xMinYMin() throws ParseException;
}