summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGViewSpec.java
blob: 5c739e085221f99b83dfe61b5a9eb7564647f05e (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * SVGViewSpec.java
 *
 * Created on April 12, 2007, 3:24 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.DOMString;
import com.kitfox.salamander.svg.coordSystems.SVGTransformList;

/**
 * 
 * The interface corresponds to an SVG View Specification.
 * @author kitfox
 */
public interface SVGViewSpec extends SVGZoomAndPan, SVGFitToViewBox
{
    /**
     * Corresponds to the transform setting on the SVG View Specification.
     */
    public SVGTransformList getTransform();
    /**
     * Corresponds to the viewTarget setting on the SVG View Specification.
     */
    public SVGElement getViewTarget();
    /**
     * Corresponds to the viewBox setting on the SVG View Specification.
     */
    public DOMString getViewBoxString();
    /**
     * Corresponds to the preserveAspectRatio setting on the SVG View Specification.
     */
    public DOMString getPreserveAspectRatioString();
    /**
     * Corresponds to the transform setting on the SVG View Specification.
     */
    public DOMString getTransformString();
    /**
     * Corresponds to the viewTarget setting on the SVG View Specification.
     */
    public DOMString getTargetString();
}