Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/MetaData.java')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/MetaData.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/MetaData.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/MetaData.java
new file mode 100644
index 0000000000..31e732edcb
--- /dev/null
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/MetaData.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2004 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.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$
+} \ No newline at end of file

Back to the top