1 /*
2
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 */
19 package org.apache.batik.parser;
20
21 /**
22 * This class provides an adapter for PreserveAspectRatioHandler.
23 *
24 * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
25 * @version $Id: DefaultPreserveAspectRatioHandler.java 1733416 2016-03-03 07:07:13Z gadams $
26 */
27 public class DefaultPreserveAspectRatioHandler
28 implements PreserveAspectRatioHandler {
29 /**
30 * The only instance of this class.
31 */
32 public static final PreserveAspectRatioHandler INSTANCE
33 = new DefaultPreserveAspectRatioHandler();
34
35 /**
36 * This class does not need to be instantiated.
37 */
38 protected DefaultPreserveAspectRatioHandler() {
39 }
40
41 /**
42 * Implements {@link
43 * PreserveAspectRatioHandler#startPreserveAspectRatio()}.
44 */
45 public void startPreserveAspectRatio() throws ParseException {
46 }
47
48 /**
49 * Implements {@link PreserveAspectRatioHandler#none()}.
50 */
51 public void none() throws ParseException {
52 }
53
54 /**
55 * Implements {@link PreserveAspectRatioHandler#xMaxYMax()}.
56 */
57 public void xMaxYMax() throws ParseException {
58 }
59
60 /**
61 * Implements {@link PreserveAspectRatioHandler#xMaxYMid()}.
62 */
63 public void xMaxYMid() throws ParseException {
64 }
65
66 /**
67 * Implements {@link PreserveAspectRatioHandler#xMaxYMin()}.
68 */
69 public void xMaxYMin() throws ParseException {
70 }
71
72 /**
73 * Implements {@link PreserveAspectRatioHandler#xMidYMax()}.
74 */
75 public void xMidYMax() throws ParseException {
76 }
77
78 /**
79 * Implements {@link PreserveAspectRatioHandler#xMidYMid()}.
80 */
81 public void xMidYMid() throws ParseException {
82 }
83
84 /**
85 * Implements {@link PreserveAspectRatioHandler#xMidYMin()}.
86 */
87 public void xMidYMin() throws ParseException {
88 }
89
90 /**
91 * Implements {@link PreserveAspectRatioHandler#xMinYMax()}.
92 */
93 public void xMinYMax() throws ParseException {
94 }
95
96 /**
97 * Implements {@link PreserveAspectRatioHandler#xMinYMid()}.
98 */
99 public void xMinYMid() throws ParseException {
100 }
101
102 /**
103 * Implements {@link PreserveAspectRatioHandler#xMinYMin()}.
104 */
105 public void xMinYMin() throws ParseException {
106 }
107
108 /**
109 * Implements {@link PreserveAspectRatioHandler#meet()}.
110 */
111 public void meet() throws ParseException {
112 }
113
114 /**
115 * Implements {@link PreserveAspectRatioHandler#slice()}.
116 */
117 public void slice() throws ParseException {
118 }
119
120 /**
121 * Implements {@link PreserveAspectRatioHandler#endPreserveAspectRatio()}.
122 */
123 public void endPreserveAspectRatio() throws ParseException {
124 }
125 }
126