summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java
blob: ed4141e1e0f89a8bc03358ec5c419066eaa1b243 (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
/*
 * SVGStyleElement.java
 *
 * Created on April 12, 2007, 7:17 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg;

/**
 * 
 * The SVGStyleElement  interface corresponds to the 'style' element.
 * @author kitfox
 */
public interface SVGStyleElement
{
    /**
     * Corresponds to attribute xml:space on the given element.
     */
    public DOMString getXmlspace();
    /**
     * Corresponds to attribute type on the given 'style' element.
     */
    public DOMString getType();
    /**
     * Corresponds to attribute media on the given 'style' element.
     */
    public DOMString getMedia();
    /**
     * Corresponds to attribute title on the given 'style' element.
     */
    public DOMString getTitle();
}