mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
Bug 317707 make new handlers non-api and revert bundle version
This commit is contained in:
parent
81f191e4a4
commit
081788d5df
6 changed files with 7 additions and 9 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.ui; singleton:=true
|
||||
Bundle-Version: 5.3.0.qualifier
|
||||
Bundle-Version: 5.2.100.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3526,11 +3526,11 @@
|
|||
<extension
|
||||
point="org.eclipse.ui.handlers">
|
||||
<handler
|
||||
class="org.eclipse.cdt.ui.actions.DeleteResConfigsHandler"
|
||||
class="org.eclipse.cdt.internal.ui.actions.DeleteResConfigsHandler"
|
||||
commandId="org.eclipse.cdt.ui.deleteConfigsCommand">
|
||||
</handler>
|
||||
<handler
|
||||
class="org.eclipse.cdt.ui.actions.ExcludeFromBuildHandler"
|
||||
class="org.eclipse.cdt.internal.ui.actions.ExcludeFromBuildHandler"
|
||||
commandId="org.eclipse.cdt.ui.excludeCommand">
|
||||
</handler>
|
||||
</extension>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Intel Corporation - initial API and implementation
|
||||
* Nokia - converted from action to handler
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.ui.actions;
|
||||
package org.eclipse.cdt.internal.ui.actions;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
|
@ -49,13 +49,11 @@ import org.eclipse.cdt.core.settings.model.ICResourceDescription;
|
|||
import org.eclipse.cdt.ui.CUIPlugin;
|
||||
import org.eclipse.cdt.ui.newui.AbstractPage;
|
||||
|
||||
import org.eclipse.cdt.internal.ui.actions.ActionMessages;
|
||||
|
||||
|
||||
/**
|
||||
* Handler for command that deletes resource description. (If resource description is missing
|
||||
* one from parent is normally used)
|
||||
* @since 5.3
|
||||
*/
|
||||
public class DeleteResConfigsHandler extends AbstractHandler {
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
* Intel Corporation - initial API and implementation
|
||||
* Nokia - converted from action to handler
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.ui.actions;
|
||||
package org.eclipse.cdt.internal.ui.actions;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
@ -53,11 +53,9 @@ import org.eclipse.cdt.ui.CUIPlugin;
|
|||
import org.eclipse.cdt.ui.newui.AbstractPage;
|
||||
import org.eclipse.cdt.ui.newui.UIMessages;
|
||||
|
||||
import org.eclipse.cdt.internal.ui.actions.ActionMessages;
|
||||
|
||||
/**
|
||||
* Handler for command that excludes resources from build.
|
||||
* @since 5.3
|
||||
*/
|
||||
public class ExcludeFromBuildHandler extends AbstractHandler {
|
||||
|
|
@ -44,6 +44,7 @@ import org.eclipse.cdt.ui.CUIPlugin;
|
|||
import org.eclipse.cdt.ui.newui.AbstractPage;
|
||||
|
||||
import org.eclipse.cdt.internal.ui.actions.ActionMessages;
|
||||
import org.eclipse.cdt.internal.ui.actions.DeleteResConfigsHandler;
|
||||
|
||||
/**
|
||||
* Action which deletes resource description. (If resource description is missing
|
||||
|
|
|
@ -47,6 +47,7 @@ import org.eclipse.cdt.ui.newui.AbstractPage;
|
|||
import org.eclipse.cdt.ui.newui.UIMessages;
|
||||
|
||||
import org.eclipse.cdt.internal.ui.actions.ActionMessages;
|
||||
import org.eclipse.cdt.internal.ui.actions.ExcludeFromBuildHandler;
|
||||
|
||||
/**
|
||||
* Action which excludes resources from build.
|
||||
|
|
Loading…
Add table
Reference in a new issue