summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGFitToViewBox.java
blob: 2f3045457f7a4d1b776d79d8183f9ab7d739d6bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * SVGFitToViewBox.java
 *
 * Created on April 12, 2007, 3:19 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.basic;

import com.kitfox.salamander.svg.coordSystems.SVGAnimatedPreserveAspectRatio;

/**
 * 
 * Interface SVGFitToViewBox defines DOM attributes that apply to elements which have XML attributes viewBox and preserveAspectRatio.
 * @author kitfox
 */
public interface SVGFitToViewBox
{
    /**
     * Corresponds to attribute viewBox on the given element.
     */
    public SVGAnimatedRect getViewBox();
    /**
     * Corresponds to attribute preserveAspectRatio on the given element.
     */
    public SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
}