summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/SVGConstants.java
blob: 2e4b120131c5a0d266354a61d8e33147760b84fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * SVGConstants.java
 *
 * Created on April 12, 2007, 7:13 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander;

/**
 *
 * @author kitfox
 */
public interface SVGConstants
{
    public static final String NAMESPACE_SVG = "http://www.w3.org/2000/svg";
    public static final String PUBLIC_IDENTIFIER_SVG = "PUBLIC \"-//W3C//DTD SVG 1.1//EN\"";
    public static final String SYSTEM_IDENTIFIER_SVG = "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";
    public static final String MIME_TYPE_SVG = "image/svg+xml";
}