/* * 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"; }