blob: 2bc7318619c416b56122b3514abe394f4735d05a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tatsuya ISHIHARA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.dom.odf.svg;
/**
* SVGConstants defines the constant values used by SVG namespace of ODF DOM API
*/
public final class SVGConstants {
static public final String SVG_NAMESPACE_URI = "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0";
static public final String ELEMENT_TITLE = "title";
static public final String ELEMENT_DESC = "desc";
static public final String ATTR_WIDTH = "width";
static public final String ATTR_HEIGHT = "height";
static public final String ATTR_X = "x";
static public final String ATTR_Y = "y";
static public final String ATTR_FONT_FAMILY = "font-family";
static public final String ATTR_FONT_FAMILY_GENERIC = "font-family-generic";
static public final String ATTR_STROKE_WIDTH = "stroke-width";
static public final String ATTR_STROKE_COLOR = "stroke-color";
static public final String ATTR_STROKE_OPACITY = "stroke-opacity";
}