summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/linking/SVGViewElement.java
blob: 265195acab8dcbf68e24baaaa9a4454685e58eca (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
/*
 * SVGViewElement.java
 *
 * Created on April 13, 2007, 11:40 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.linking;

import com.kitfox.salamander.svg.basic.SVGElement;
import com.kitfox.salamander.svg.basic.SVGExternalResourcesRequired;
import com.kitfox.salamander.svg.basic.SVGFitToViewBox;
import com.kitfox.salamander.svg.basic.SVGStringList;
import com.kitfox.salamander.svg.basic.SVGZoomAndPan;

/**
 * The SVGViewElement  interface corresponds to the 'view' element.
 * @author kitfox
 */
public interface SVGViewElement extends SVGElement,
        SVGExternalResourcesRequired,
        SVGFitToViewBox,
        SVGZoomAndPan
{
    /**
     * Corresponds to attribute viewTarget on the given 'view' element. A list of DOMString values which contain the names listed in the viewTarget attribute. Each of the DOMString values can be associated with the corresponding element using the getElementById() method call.
     */
    public SVGStringList getViewTarget();
}