1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[174263][api] make org.eclipse.rse.subsystems.shells.ssh internal

This commit is contained in:
Martin Oberhuber 2007-02-15 09:51:34 +00:00
parent 82e3f93af7
commit 2348207a15
6 changed files with 6 additions and 7 deletions

View file

@ -129,7 +129,6 @@
<topic label="org.eclipse.rse.subsystems.shells.dstore" href="reference/api/org/eclipse/rse/subsystems/shells/dstore/package-summary.html"/>
<topic label="org.eclipse.rse.subsystems.shells.local.model" href="reference/api/org/eclipse/rse/subsystems/shells/local/model/package-summary.html"/>
<topic label="org.eclipse.rse.subsystems.shells.local" href="reference/api/org/eclipse/rse/subsystems/shells/local/package-summary.html"/>
<topic label="org.eclipse.rse.subsystems.shells.ssh" href="reference/api/org/eclipse/rse/subsystems/shells/ssh/package-summary.html"/>
</topic>
<topic label="User Interface" href="provisional_api.html">
<topic label="org.eclipse.rse.ui" href="reference/api/org/eclipse/rse/ui/package-summary.html"/>

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.rse.subsystems.shells.ssh; singleton:=true
Bundle-Version: 1.0.1.qualifier
Bundle-Activator: org.eclipse.rse.subsystems.shells.ssh.Activator
Bundle-Activator: org.eclipse.rse.internal.subsystems.shells.ssh.Activator
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
@ -17,5 +17,5 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.rse.core,
org.eclipse.rse.ui
Eclipse-LazyStart: true
Export-Package: org.eclipse.rse.subsystems.shells.ssh
Export-Package: org.eclipse.rse.internal.subsystems.shells.ssh;x-internal:=true
Bundle-RequiredExecutionEnvironment: J2SE-1.4

View file

@ -20,7 +20,7 @@ Martin Oberhuber - initial API and implementation
iconlive="icons/full/obj16/systemcommandslive_obj.gif"
icon="icons/full/obj16/systemcommands_obj.gif"
category="shells"
class="org.eclipse.rse.subsystems.shells.ssh.SshShellSubSystemConfiguration"
class="org.eclipse.rse.internal.subsystems.shells.ssh.SshShellSubSystemConfiguration"
vendor="%providerName"
priority="300"
id="ssh.shells">

View file

@ -8,7 +8,7 @@
* Contributors:
* Martin Oberhuber (Wind River) - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.subsystems.shells.ssh;
package org.eclipse.rse.internal.subsystems.shells.ssh;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;

View file

@ -14,7 +14,7 @@
* Martin Oberhuber (Wind River) - Adapted from LocalServiceCommandShell
********************************************************************************/
package org.eclipse.rse.subsystems.shells.ssh;
package org.eclipse.rse.internal.subsystems.shells.ssh;
import java.util.ArrayList;
import java.util.StringTokenizer;

View file

@ -14,7 +14,7 @@
* Martin Oberhuber (Wind River) - Adapted template for ssh service.
********************************************************************************/
package org.eclipse.rse.subsystems.shells.ssh;
package org.eclipse.rse.internal.subsystems.shells.ssh;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.core.subsystems.IConnectorService;