Package org.apache.batik.parser
Interface PreserveAspectRatioHandler
-
- All Known Subinterfaces:
FragmentIdentifierHandler
- All Known Implementing Classes:
AbstractSVGPreserveAspectRatio.PreserveAspectRatioParserHandler,DefaultFragmentIdentifierHandler,DefaultPreserveAspectRatioHandler,ViewBox.ViewHandler
public interface PreserveAspectRatioHandlerThis interface must be implemented and then registred as the handler of aPreserveAspectRatioParserinstance in order to be notified of parsing events.- Version:
- $Id: PreserveAspectRatioHandler.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendPreserveAspectRatio()Invoked when the PreserveAspectRatio parsing ends.voidmeet()Invoked when 'meet' has been parsed.voidnone()Invoked when 'none' been parsed.voidslice()Invoked when 'slice' has been parsed.voidstartPreserveAspectRatio()Invoked when the PreserveAspectRatio parsing starts.voidxMaxYMax()Invoked when 'xMaxYMax' has been parsed.voidxMaxYMid()Invoked when 'xMaxYMid' has been parsed.voidxMaxYMin()Invoked when 'xMaxYMin' has been parsed.voidxMidYMax()Invoked when 'xMidYMax' has been parsed.voidxMidYMid()Invoked when 'xMidYMid' has been parsed.voidxMidYMin()Invoked when 'xMidYMin' has been parsed.voidxMinYMax()Invoked when 'xMinYMax' has been parsed.voidxMinYMid()Invoked when 'xMinYMid' has been parsed.voidxMinYMin()Invoked when 'xMinYMin' has been parsed.
-
-
-
Method Detail
-
startPreserveAspectRatio
void startPreserveAspectRatio() throws ParseExceptionInvoked when the PreserveAspectRatio parsing starts.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
none
void none() throws ParseException
Invoked when 'none' been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMaxYMax
void xMaxYMax() throws ParseExceptionInvoked when 'xMaxYMax' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMaxYMid
void xMaxYMid() throws ParseExceptionInvoked when 'xMaxYMid' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMaxYMin
void xMaxYMin() throws ParseExceptionInvoked when 'xMaxYMin' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMidYMax
void xMidYMax() throws ParseExceptionInvoked when 'xMidYMax' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMidYMid
void xMidYMid() throws ParseExceptionInvoked when 'xMidYMid' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMidYMin
void xMidYMin() throws ParseExceptionInvoked when 'xMidYMin' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMinYMax
void xMinYMax() throws ParseExceptionInvoked when 'xMinYMax' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMinYMid
void xMinYMid() throws ParseExceptionInvoked when 'xMinYMid' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
xMinYMin
void xMinYMin() throws ParseExceptionInvoked when 'xMinYMin' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
meet
void meet() throws ParseException
Invoked when 'meet' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
slice
void slice() throws ParseExceptionInvoked when 'slice' has been parsed.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
endPreserveAspectRatio
void endPreserveAspectRatio() throws ParseExceptionInvoked when the PreserveAspectRatio parsing ends.- Throws:
ParseException- if an error occured while processing the PreserveAspectRatio
-
-