blob: 61c8e0b0f62e19d9c479d3953dd40120e431013a [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.presentation;
/**
* PresentationConstants defines the constant values used by presentation namespace of ODF DOM API
*/
public final class PresentationConstants {
static public final String PRESENTATION_NAMESPACE_URI = "urn:oasis:names:tc:opendocument:xmlns:presentation:1.0";
static public final String ELEMENT_NOTES = "notes";
static public final String ATTR_DISPLAY_HEADER = "display-header";
static public final String ATTR_DISPLAY_FOOTER = "display-footer";
static public final String ATTR_DISPLAY_PAGE_NUMBER = "display-page-number";
static public final String ATTR_DISPLAY_DATE_TIME = "display-date-time";
static public final String ATTR_CLASS = "class";
static public final String ATTR_CLASS_VALUE_NOTES = "notes";
}