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:
authornsandonato2010-12-15 20:56:27 +0000
committernsandonato2010-12-15 20:56:27 +0000
commitfcae6132d51b3e027e25f86b377559f48e38325b (patch)
treecaab7669fe2764018bac2cf0a9e789a8e95e5a23 /bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html
parentb6fd18eab194785bb53afa3384a3fad133578f98 (diff)
downloadwebtools.sourceediting-fcae6132d51b3e027e25f86b377559f48e38325b.tar.gz
webtools.sourceediting-fcae6132d51b3e027e25f86b377559f48e38325b.tar.xz
webtools.sourceediting-fcae6132d51b3e027e25f86b377559f48e38325b.zip
[86520] [editor] toggle comment always uses <!-- -->
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/text/IHTMLPartitions.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/text/IHTMLPartitions.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/text/IHTMLPartitions.java
index e7dd5ae5ad..f5e98cdcf9 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/text/IHTMLPartitions.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/text/IHTMLPartitions.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
+ * Copyright (c) 2005, 2010 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
@@ -26,6 +26,10 @@ public interface IHTMLPartitions {
String SCRIPT = "org.eclipse.wst.html.SCRIPT"; //$NON-NLS-1$
String SCRIPT_EVENTHANDLER = SCRIPT + ".EVENTHANDLER"; //$NON-NLS-1$
+
+ /**
+ * @deprecated this partition type is not used locally any longer
+ */
String STYLE = "org.eclipse.wst.html.STYLE"; //$NON-NLS-1$
// ISSUE: I think meta tag areas are here too?

Back to the top