blob: a05758c072600d342146620c0b727c054e1f9c5f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.html.core.internal.document;
/**
*/
public interface MetaData {
static final String METADATA = "METADATA";//$NON-NLS-1$
static final String TYPE = "type";//$NON-NLS-1$
static final String STARTSPAN = "startspan";//$NON-NLS-1$
static final String ENDSPAN = "endspan";//$NON-NLS-1$
static final String DESIGNER_CONTROL = "DesignerControl";//$NON-NLS-1$
static final String DYNAMIC_DATA = "DynamicData";//$NON-NLS-1$
static final String AUTHOR_TIME_VISUAL = "AuthorTimeVisual";//$NON-NLS-1$
static final String ANNOTATION = "Annotation";//$NON-NLS-1$
static final String PREFIX = "METADATA:";//$NON-NLS-1$
}