32 lines
716 B
Java
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;
|
|
}
|