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:
authornitind2007-04-30 18:13:52 +0000
committernitind2007-04-30 18:13:52 +0000
commitd0e63846e760296d8ab7bc78ebbf466a60298424 (patch)
tree23c87c9bd6aa874e8e8817f4ccd6f8e0a02daeaf /bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional
parentc25dd57b0d909524e6e4ff3f2ad886d10a490644 (diff)
downloadwebtools.sourceediting-d0e63846e760296d8ab7bc78ebbf466a60298424.tar.gz
webtools.sourceediting-d0e63846e760296d8ab7bc78ebbf466a60298424.tar.xz
webtools.sourceediting-d0e63846e760296d8ab7bc78ebbf466a60298424.zip
[181799] update copyright comments for all SSE code (2)
Diffstat (limited to 'bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional')
-rw-r--r--bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional/contentmodel/CMDocType.java20
1 files changed, 19 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional/contentmodel/CMDocType.java b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional/contentmodel/CMDocType.java
index c41e4e6050..7a3d95fe68 100644
--- a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional/contentmodel/CMDocType.java
+++ b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/provisional/contentmodel/CMDocType.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2001, 2005 IBM Corporation and others.
+ * Copyright (c) 2001, 2007 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
@@ -14,10 +14,28 @@ package org.eclipse.wst.xml.core.internal.provisional.contentmodel;
public interface CMDocType {
+ /**
+ * CHTML files
+ */
public final static String CHTML_DOC_TYPE = "CHTML";//$NON-NLS-1$
+ /**
+ * HTML files
+ */
public final static String HTML_DOC_TYPE = "HTML";//$NON-NLS-1$
+ /**
+ * JSP 1.1 files (currently includes 1.2 elements for backward behavioral compatibility)
+ */
public final static String JSP11_DOC_TYPE = "JSP11";//$NON-NLS-1$
+ /**
+ * JSP 1.2 files
+ */
public final static String JSP12_DOC_TYPE = "JSP12";//$NON-NLS-1$
+ /**
+ * JSP 2.0 JSP files
+ */
public final static String JSP20_DOC_TYPE = "JSP20";//$NON-NLS-1$
+ /**
+ * JSP 2.0 Tag files
+ */
public final static String TAG20_DOC_TYPE = "JSP20.TAG";//$NON-NLS-1$
}

Back to the top