1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Bug 561390 - Revise API for CDT CMake UI

- renamed package "org.eclipse.cdt.cmake.ui.properties"
to "org.eclipse.cdt.cmake.internal.ui.properties"
- exported all packages as "x-internal"

Change-Id: Iedf70fec4d3457b24fdfa288d87af855c560fbf4
Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
This commit is contained in:
Alexander Fedorov 2020-03-23 23:03:14 +03:00
parent ce97426688
commit c664c76dcd
3 changed files with 5 additions and 3 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: CDT CMake UI Bundle-Name: CDT CMake UI
Bundle-SymbolicName: org.eclipse.cdt.cmake.ui;singleton:=true Bundle-SymbolicName: org.eclipse.cdt.cmake.ui;singleton:=true
Bundle-Version: 1.2.300.qualifier Bundle-Version: 1.3.0.qualifier
Bundle-Activator: org.eclipse.cdt.cmake.ui.internal.Activator Bundle-Activator: org.eclipse.cdt.cmake.ui.internal.Activator
Bundle-Vendor: Eclipse CDT Bundle-Vendor: Eclipse CDT
Require-Bundle: org.eclipse.core.runtime, Require-Bundle: org.eclipse.core.runtime,
@ -21,3 +21,5 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin Bundle-Localization: plugin
Automatic-Module-Name: org.eclipse.cdt.cmake.ui Automatic-Module-Name: org.eclipse.cdt.cmake.ui
Export-Package: org.eclipse.cdt.cmake.internal.ui.properties;x-internal:=true,
org.eclipse.cdt.cmake.ui.internal;x-internal:=true

View file

@ -4,7 +4,7 @@
<extension <extension
point="org.eclipse.ui.propertyPages"> point="org.eclipse.ui.propertyPages">
<page <page
class="org.eclipse.cdt.cmake.ui.properties.CMakePropertyPage" class="org.eclipse.cdt.cmake.internal.ui.properties.CMakePropertyPage"
id="org.eclipse.cdt.cmake.ui.properties.cmakePropertyPage" id="org.eclipse.cdt.cmake.ui.properties.cmakePropertyPage"
name="CMake"> name="CMake">
<enabledWhen> <enabledWhen>

View file

@ -11,7 +11,7 @@
* Contributors: * Contributors:
* IAR Systems - initial API and implementation * IAR Systems - initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.cmake.ui.properties; package org.eclipse.cdt.cmake.internal.ui.properties;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import java.io.IOException; import java.io.IOException;