Move StructuredTextViewerConfigurationHTML into a public package as API
diff --git a/bundles/org.eclipse.wst.html.core/component.xml b/bundles/org.eclipse.wst.html.core/component.xml
index 784064b..e5c04cf 100644
--- a/bundles/org.eclipse.wst.html.core/component.xml
+++ b/bundles/org.eclipse.wst.html.core/component.xml
@@ -4,9 +4,9 @@
<plugin id="org.eclipse.wst.html.core" />
<plugin id="org.eclipse.wst.html.ui" />
<description url="http://eclipse.org/webtools/wst/components/html/overview.html" />
- <!-- <package name="org.eclipse.wst.html.ui">-->
- <!-- <type name="StructuredTextViewerConfigurationHTML" subclass="true" instantiate="true" />-->
- <!-- </package>-->
+ <package name="org.eclipse.wst.html.ui">
+ <type name="StructuredTextViewerConfigurationHTML" subclass="true" instantiate="true" />
+ </package>
<package name="org.eclipse.wst.html.ui.views.contentoutline">
<type name="HTMLContentOutlineConfiguration" subclass="true" instantiate="true" />
</package>
diff --git a/bundles/org.eclipse.wst.html.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.html.ui/META-INF/MANIFEST.MF
index c5bdd30..a8261d1 100644
--- a/bundles/org.eclipse.wst.html.ui/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.wst.html.ui/META-INF/MANIFEST.MF
@@ -6,7 +6,8 @@
Bundle-Activator: org.eclipse.wst.html.ui.internal.HTMLUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
-Export-Package: org.eclipse.wst.html.internal.validation,
+Export-Package: org.eclipse.wst.html.ui,
+ org.eclipse.wst.html.internal.validation,
org.eclipse.wst.html.ui.internal,
org.eclipse.wst.html.ui.internal.autoedit,
org.eclipse.wst.html.ui.internal.contentassist,
@@ -20,7 +21,6 @@
org.eclipse.wst.html.ui.internal.preferences,
org.eclipse.wst.html.ui.internal.preferences.ui,
org.eclipse.wst.html.ui.internal.projection,
- org.eclipse.wst.html.ui.internal.provisional,
org.eclipse.wst.html.ui.internal.registry,
org.eclipse.wst.html.ui.internal.search,
org.eclipse.wst.html.ui.internal.style,
diff --git a/bundles/org.eclipse.wst.html.ui/plugin.xml b/bundles/org.eclipse.wst.html.ui/plugin.xml
index c4a2163..7daa846 100644
--- a/bundles/org.eclipse.wst.html.ui/plugin.xml
+++ b/bundles/org.eclipse.wst.html.ui/plugin.xml
@@ -21,7 +21,7 @@
</extension>
<extension point="org.eclipse.wst.sse.ui.editorConfiguration">
<sourceViewerConfiguration
- class="org.eclipse.wst.html.ui.internal.provisional.StructuredTextViewerConfigurationHTML"
+ class="org.eclipse.wst.html.ui.StructuredTextViewerConfigurationHTML"
target="org.eclipse.wst.html.core.htmlsource" />
<contentOutlineConfiguration
class="org.eclipse.wst.html.ui.views.contentoutline.HTMLContentOutlineConfiguration"
diff --git a/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/provisional/StructuredTextViewerConfigurationHTML.java b/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/StructuredTextViewerConfigurationHTML.java
similarity index 99%
rename from bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/provisional/StructuredTextViewerConfigurationHTML.java
rename to bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/StructuredTextViewerConfigurationHTML.java
index b64edc9..b76a9eb 100644
--- a/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/provisional/StructuredTextViewerConfigurationHTML.java
+++ b/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/StructuredTextViewerConfigurationHTML.java
@@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
-package org.eclipse.wst.html.ui.internal.provisional;
+package org.eclipse.wst.html.ui;
import java.util.ArrayList;
import java.util.List;