mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 11:55:40 +02:00
Fix incorrectly named packages.
Signed-off-by: Greg Watson <g.watson@computer.org>
This commit is contained in:
parent
2369f72979
commit
bfd74f8717
84 changed files with 180 additions and 180 deletions
|
@ -3,19 +3,19 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.remote.core;singleton:=true
|
Bundle-SymbolicName: org.eclipse.remote.core;singleton:=true
|
||||||
Bundle-Version: 1.0.0.qualifier
|
Bundle-Version: 1.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.internal.remote.core.RemoteCorePlugin
|
Bundle-Activator: org.eclipse.remote.internal.core.RemoteCorePlugin
|
||||||
Bundle-Vendor: %pluginProvider
|
Bundle-Vendor: %pluginProvider
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
org.eclipse.core.filesystem,
|
org.eclipse.core.filesystem,
|
||||||
org.eclipse.core.resources,
|
org.eclipse.core.resources,
|
||||||
org.eclipse.core.variables
|
org.eclipse.core.variables
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Export-Package: org.eclipse.internal.remote.core;x-friends:="org.eclipse.remote.ui",
|
Export-Package: org.eclipse.remote.core,
|
||||||
org.eclipse.internal.remote.core.messages;x-internal:=true,
|
org.eclipse.remote.core.exception,
|
||||||
org.eclipse.internal.remote.core.preferences;x-friends:="org.eclipse.remote.ui",
|
org.eclipse.remote.internal.core;x-friends:="org.eclipse.remote.ui",
|
||||||
org.eclipse.internal.remote.core.services.local;x-internal:=true,
|
org.eclipse.remote.internal.core.messages;x-internal:=true,
|
||||||
org.eclipse.remote.core,
|
org.eclipse.remote.internal.core.preferences;x-friends:="org.eclipse.remote.ui",
|
||||||
org.eclipse.remote.core.exception
|
org.eclipse.remote.internal.core.services.local;x-internal:=true
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||||
Import-Package: org.eclipse.equinox.security.storage
|
Import-Package: org.eclipse.equinox.security.storage
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.remote.core.remoteServices">
|
point="org.eclipse.remote.core.remoteServices">
|
||||||
<remoteServices
|
<remoteServices
|
||||||
class="org.eclipse.internal.remote.core.services.local.LocalServicesFactory"
|
class="org.eclipse.remote.internal.core.services.local.LocalServicesFactory"
|
||||||
id="org.eclipse.remote.LocalServices"
|
id="org.eclipse.remote.LocalServices"
|
||||||
name="Local"
|
name="Local"
|
||||||
scheme="file">
|
scheme="file">
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
point="org.eclipse.core.runtime.adapters">
|
point="org.eclipse.core.runtime.adapters">
|
||||||
<factory
|
<factory
|
||||||
adaptableType="org.eclipse.core.resources.IResource"
|
adaptableType="org.eclipse.core.resources.IResource"
|
||||||
class="org.eclipse.internal.remote.core.RemoteResourceAdapterFactory">
|
class="org.eclipse.remote.internal.core.RemoteResourceAdapterFactory">
|
||||||
<adapter
|
<adapter
|
||||||
type="org.eclipse.remote.core.IRemoteResource">
|
type="org.eclipse.remote.core.IRemoteResource">
|
||||||
</adapter>
|
</adapter>
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.core.runtime.preferences">
|
point="org.eclipse.core.runtime.preferences">
|
||||||
<initializer
|
<initializer
|
||||||
class="org.eclipse.internal.remote.core.preferences.PreferenceInitializer">
|
class="org.eclipse.remote.internal.core.preferences.PreferenceInitializer">
|
||||||
</initializer>
|
</initializer>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.remote.core.remoteServices">
|
point="org.eclipse.remote.core.remoteServices">
|
||||||
<remoteServices
|
<remoteServices
|
||||||
class="org.eclipse.internal.remote.core.services.local.LocalServicesFactory"
|
class="org.eclipse.remote.internal.core.services.local.LocalServicesFactory"
|
||||||
id="org.eclipse.ptp.remote.LocalServices"
|
id="org.eclipse.ptp.remote.LocalServices"
|
||||||
name="Local"
|
name="Local"
|
||||||
scheme="file">
|
scheme="file">
|
||||||
|
|
|
@ -13,9 +13,9 @@ package org.eclipse.remote.core;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesDescriptor;
|
import org.eclipse.remote.internal.core.RemoteServicesDescriptor;
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesImpl;
|
import org.eclipse.remote.internal.core.RemoteServicesImpl;
|
||||||
import org.eclipse.internal.remote.core.services.local.LocalServices;
|
import org.eclipse.remote.internal.core.services.local.LocalServices;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main entry point for accessing remote services.
|
* Main entry point for accessing remote services.
|
||||||
|
|
|
@ -17,9 +17,9 @@ import org.eclipse.core.filesystem.IFileStore;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesDescriptor;
|
import org.eclipse.remote.internal.core.RemoteServicesDescriptor;
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesImpl;
|
import org.eclipse.remote.internal.core.RemoteServicesImpl;
|
||||||
import org.eclipse.internal.remote.core.preferences.Preferences;
|
import org.eclipse.remote.internal.core.preferences.Preferences;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remote services utility methods.
|
* Remote services utility methods.
|
||||||
|
|
|
@ -14,7 +14,7 @@ package org.eclipse.remote.core.exception;
|
||||||
import org.eclipse.core.runtime.CoreException;
|
import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.internal.remote.core.RemoteCorePlugin;
|
import org.eclipse.remote.internal.core.RemoteCorePlugin;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exception thrown when a remote connection error occurs.
|
* Exception thrown when a remote connection error occurs.
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core;
|
package org.eclipse.remote.internal.core;
|
||||||
|
|
||||||
import org.eclipse.core.resources.ISaveContext;
|
import org.eclipse.core.resources.ISaveContext;
|
||||||
import org.eclipse.core.resources.ISaveParticipant;
|
import org.eclipse.core.resources.ISaveParticipant;
|
||||||
|
@ -17,7 +17,7 @@ import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Plugin;
|
import org.eclipse.core.runtime.Plugin;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.internal.remote.core.preferences.Preferences;
|
import org.eclipse.remote.internal.core.preferences.Preferences;
|
||||||
import org.osgi.framework.BundleContext;
|
import org.osgi.framework.BundleContext;
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM - Initial API and implementation
|
* IBM - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core;
|
package org.eclipse.remote.internal.core;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
@ -21,8 +21,8 @@ import org.eclipse.core.runtime.IExtension;
|
||||||
import org.eclipse.core.runtime.IExtensionPoint;
|
import org.eclipse.core.runtime.IExtensionPoint;
|
||||||
import org.eclipse.core.runtime.IExtensionRegistry;
|
import org.eclipse.core.runtime.IExtensionRegistry;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.internal.remote.core.services.local.LocalResource;
|
|
||||||
import org.eclipse.remote.core.IRemoteResource;
|
import org.eclipse.remote.core.IRemoteResource;
|
||||||
|
import org.eclipse.remote.internal.core.services.local.LocalResource;
|
||||||
|
|
||||||
public class RemoteResourceAdapterFactory implements IAdapterFactory {
|
public class RemoteResourceAdapterFactory implements IAdapterFactory {
|
||||||
public static final String EXTENSION_POINT_ID = "remoteResources"; //$NON-NLS-1$
|
public static final String EXTENSION_POINT_ID = "remoteResources"; //$NON-NLS-1$
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM - Initial API and implementation
|
* IBM - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core;
|
package org.eclipse.remote.internal.core;
|
||||||
|
|
||||||
import org.eclipse.core.resources.IResource;
|
import org.eclipse.core.resources.IResource;
|
||||||
import org.eclipse.core.runtime.CoreException;
|
import org.eclipse.core.runtime.CoreException;
|
|
@ -8,14 +8,14 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core;
|
package org.eclipse.remote.internal.core;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IConfigurationElement;
|
import org.eclipse.core.runtime.IConfigurationElement;
|
||||||
import org.eclipse.internal.remote.core.messages.Messages;
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.IRemoteServicesDescriptor;
|
import org.eclipse.remote.core.IRemoteServicesDescriptor;
|
||||||
import org.eclipse.remote.core.IRemoteServicesFactory;
|
import org.eclipse.remote.core.IRemoteServicesFactory;
|
||||||
|
import org.eclipse.remote.internal.core.messages.Messages;
|
||||||
|
|
||||||
public class RemoteServicesDescriptor implements IRemoteServicesDescriptor {
|
public class RemoteServicesDescriptor implements IRemoteServicesDescriptor {
|
||||||
private static final String ATTR_ID = "id"; //$NON-NLS-1$
|
private static final String ATTR_ID = "id"; //$NON-NLS-1$
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core;
|
package org.eclipse.remote.internal.core;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -22,8 +22,8 @@ import org.eclipse.core.runtime.IExtension;
|
||||||
import org.eclipse.core.runtime.IExtensionPoint;
|
import org.eclipse.core.runtime.IExtensionPoint;
|
||||||
import org.eclipse.core.runtime.IExtensionRegistry;
|
import org.eclipse.core.runtime.IExtensionRegistry;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.internal.remote.core.services.local.LocalServices;
|
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
|
import org.eclipse.remote.internal.core.services.local.LocalServices;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main entry point for remote services
|
* Main entry point for remote services
|
|
@ -1,9 +1,9 @@
|
||||||
package org.eclipse.internal.remote.core.messages;
|
package org.eclipse.remote.internal.core.messages;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
public class Messages extends NLS {
|
public class Messages extends NLS {
|
||||||
private static final String BUNDLE_NAME = "org.eclipse.internal.remote.core.messages.messages"; //$NON-NLS-1$
|
private static final String BUNDLE_NAME = "org.eclipse.remote.internal.core.messages.messages"; //$NON-NLS-1$
|
||||||
public static String LocalConnection_1;
|
public static String LocalConnection_1;
|
||||||
public static String LocalConnection_2;
|
public static String LocalConnection_2;
|
||||||
public static String RemoteServicesProxy_0;
|
public static String RemoteServicesProxy_0;
|
|
@ -9,7 +9,7 @@
|
||||||
* IBM - Initial API and implementation
|
* IBM - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.core.preferences;
|
package org.eclipse.remote.internal.core.preferences;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
|
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
|
||||||
import org.eclipse.remote.core.IRemotePreferenceConstants;
|
import org.eclipse.remote.core.IRemotePreferenceConstants;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.preferences;
|
package org.eclipse.remote.internal.core.preferences;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.core.runtime.preferences.DefaultScope;
|
import org.eclipse.core.runtime.preferences.DefaultScope;
|
||||||
|
@ -16,7 +16,7 @@ import org.eclipse.core.runtime.preferences.IEclipsePreferences;
|
||||||
import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
|
import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
|
||||||
import org.eclipse.core.runtime.preferences.IScopeContext;
|
import org.eclipse.core.runtime.preferences.IScopeContext;
|
||||||
import org.eclipse.core.runtime.preferences.InstanceScope;
|
import org.eclipse.core.runtime.preferences.InstanceScope;
|
||||||
import org.eclipse.internal.remote.core.RemoteCorePlugin;
|
import org.eclipse.remote.internal.core.RemoteCorePlugin;
|
||||||
import org.osgi.service.prefs.BackingStoreException;
|
import org.osgi.service.prefs.BackingStoreException;
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -19,7 +19,6 @@ import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.ListenerList;
|
import org.eclipse.core.runtime.ListenerList;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.internal.remote.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionChangeEvent;
|
import org.eclipse.remote.core.IRemoteConnectionChangeEvent;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionChangeListener;
|
import org.eclipse.remote.core.IRemoteConnectionChangeListener;
|
||||||
|
@ -32,6 +31,7 @@ import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.IUserAuthenticator;
|
import org.eclipse.remote.core.IUserAuthenticator;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
import org.eclipse.remote.core.exception.UnableToForwardPortException;
|
import org.eclipse.remote.core.exception.UnableToForwardPortException;
|
||||||
|
import org.eclipse.remote.internal.core.messages.Messages;
|
||||||
|
|
||||||
public class LocalConnection implements IRemoteConnection {
|
public class LocalConnection implements IRemoteConnection {
|
||||||
private final String fName = IRemoteConnectionManager.LOCAL_CONNECTION_NAME;
|
private final String fName = IRemoteConnectionManager.LOCAL_CONNECTION_NAME;
|
|
@ -8,19 +8,19 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.eclipse.core.filesystem.EFS;
|
import org.eclipse.core.filesystem.EFS;
|
||||||
import org.eclipse.internal.remote.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionManager;
|
import org.eclipse.remote.core.IRemoteConnectionManager;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.core.messages.Messages;
|
||||||
|
|
||||||
public class LocalConnectionManager implements IRemoteConnectionManager {
|
public class LocalConnectionManager implements IRemoteConnectionManager {
|
||||||
private final IRemoteConnection fLocalConnection;
|
private final IRemoteConnection fLocalConnection;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -28,10 +28,10 @@ import org.eclipse.core.runtime.IExtensionRegistry;
|
||||||
import org.eclipse.core.runtime.NullProgressMonitor;
|
import org.eclipse.core.runtime.NullProgressMonitor;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.internal.remote.core.RemoteCorePlugin;
|
|
||||||
import org.eclipse.remote.core.AbstractRemoteProcessBuilder;
|
import org.eclipse.remote.core.AbstractRemoteProcessBuilder;
|
||||||
import org.eclipse.remote.core.IProcessFactory;
|
import org.eclipse.remote.core.IProcessFactory;
|
||||||
import org.eclipse.remote.core.IRemoteProcess;
|
import org.eclipse.remote.core.IRemoteProcess;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteCorePlugin;
|
||||||
|
|
||||||
public class LocalProcessBuilder extends AbstractRemoteProcessBuilder {
|
public class LocalProcessBuilder extends AbstractRemoteProcessBuilder {
|
||||||
private static final String EXTENSION_POINT_ID = "processFactory"; //$NON-NLS-1$
|
private static final String EXTENSION_POINT_ID = "processFactory"; //$NON-NLS-1$
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM - Initial API and implementation
|
* IBM - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.remote.core.AbstractRemoteServices;
|
import org.eclipse.remote.core.AbstractRemoteServices;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.core.services.local;
|
package org.eclipse.remote.internal.core.services.local;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.IRemoteServicesDescriptor;
|
import org.eclipse.remote.core.IRemoteServicesDescriptor;
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.remote.jsch.core;singleton:=true
|
Bundle-SymbolicName: org.eclipse.remote.jsch.core;singleton:=true
|
||||||
Bundle-Version: 1.0.0.qualifier
|
Bundle-Version: 1.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.internal.remote.jsch.core.Activator
|
Bundle-Activator: org.eclipse.remote.internal.jsch.core.Activator
|
||||||
Bundle-Vendor: %pluginProvider
|
Bundle-Vendor: %pluginProvider
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
org.eclipse.core.filesystem,
|
org.eclipse.core.filesystem,
|
||||||
|
@ -12,7 +12,7 @@ Require-Bundle: org.eclipse.core.runtime,
|
||||||
com.jcraft.jsch,
|
com.jcraft.jsch,
|
||||||
org.eclipse.equinox.security
|
org.eclipse.equinox.security
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Export-Package: org.eclipse.internal.remote.jsch.core;x-friends:="org.eclipse.remote.jsch.ui",
|
Export-Package: org.eclipse.remote.internal.jsch.core;x-friends:="org.eclipse.remote.jsch.ui",
|
||||||
org.eclipse.internal.remote.jsch.core.messages;x-internal:=true
|
org.eclipse.remote.internal.jsch.core.messages;x-internal:=true
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.remote.core.remoteServices">
|
point="org.eclipse.remote.core.remoteServices">
|
||||||
<remoteServices
|
<remoteServices
|
||||||
class="org.eclipse.internal.remote.jsch.core.JSchServicesFactory"
|
class="org.eclipse.remote.internal.jsch.core.JSchServicesFactory"
|
||||||
id="org.eclipse.remote.JSch"
|
id="org.eclipse.remote.JSch"
|
||||||
name="Built-in SSH"
|
name="Built-in SSH"
|
||||||
scheme="ssh">
|
scheme="ssh">
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
<filesystem
|
<filesystem
|
||||||
scheme="ssh">
|
scheme="ssh">
|
||||||
<run
|
<run
|
||||||
class="org.eclipse.internal.remote.jsch.core.JSchFileSystem">
|
class="org.eclipse.remote.internal.jsch.core.JSchFileSystem">
|
||||||
</run>
|
</run>
|
||||||
</filesystem>
|
</filesystem>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Plugin;
|
import org.eclipse.core.runtime.Plugin;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.PasswordAuthentication;
|
import java.net.PasswordAuthentication;
|
||||||
|
@ -22,8 +22,6 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.ListenerList;
|
import org.eclipse.core.runtime.ListenerList;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.ExecCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.jsch.core.IJSchService;
|
import org.eclipse.jsch.core.IJSchService;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionChangeEvent;
|
import org.eclipse.remote.core.IRemoteConnectionChangeEvent;
|
||||||
|
@ -37,6 +35,8 @@ import org.eclipse.remote.core.IUserAuthenticator;
|
||||||
import org.eclipse.remote.core.exception.AddressInUseException;
|
import org.eclipse.remote.core.exception.AddressInUseException;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
import org.eclipse.remote.core.exception.UnableToForwardPortException;
|
import org.eclipse.remote.core.exception.UnableToForwardPortException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.ExecCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.ChannelExec;
|
import com.jcraft.jsch.ChannelExec;
|
||||||
import com.jcraft.jsch.ChannelSftp;
|
import com.jcraft.jsch.ChannelSftp;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -19,13 +19,13 @@ import java.util.Map;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
|
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
|
||||||
import org.eclipse.core.runtime.preferences.InstanceScope;
|
import org.eclipse.core.runtime.preferences.InstanceScope;
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionManager;
|
import org.eclipse.remote.core.IRemoteConnectionManager;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
import org.osgi.service.prefs.BackingStoreException;
|
import org.osgi.service.prefs.BackingStoreException;
|
||||||
import org.osgi.service.prefs.Preferences;
|
import org.osgi.service.prefs.Preferences;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
@ -79,7 +79,7 @@ public class JSchConnectionWorkingCopy extends JSchConnection implements IRemote
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
*
|
*
|
||||||
* @see org.eclipse.internal.remote.jsch.core.JSchConnection#getPassphrase()
|
* @see org.eclipse.remote.internal.jsch.core.JSchConnection#getPassphrase()
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String getPassphrase() {
|
public String getPassphrase() {
|
||||||
|
@ -89,7 +89,7 @@ public class JSchConnectionWorkingCopy extends JSchConnection implements IRemote
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
*
|
*
|
||||||
* @see org.eclipse.internal.remote.jsch.core.JSchConnection#getPassword()
|
* @see org.eclipse.remote.internal.jsch.core.JSchConnection#getPassword()
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String getPassword() {
|
public String getPassword() {
|
||||||
|
@ -109,7 +109,7 @@ public class JSchConnectionWorkingCopy extends JSchConnection implements IRemote
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
*
|
*
|
||||||
* @see org.eclipse.internal.remote.jsch.core.JSchConnection#getTimeout()
|
* @see org.eclipse.remote.internal.jsch.core.JSchConnection#getTimeout()
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int getTimeout() {
|
public int getTimeout() {
|
||||||
|
@ -148,7 +148,7 @@ public class JSchConnectionWorkingCopy extends JSchConnection implements IRemote
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
*
|
*
|
||||||
* @see org.eclipse.internal.remote.jsch.core.JSchConnection#isPasswordAuth()
|
* @see org.eclipse.remote.internal.jsch.core.JSchConnection#isPasswordAuth()
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean isPasswordAuth() {
|
public boolean isPasswordAuth() {
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Martin Oberhuber (Wind River) - [199587] return attributes of RemoteToolsFileSystem
|
* Martin Oberhuber (Wind River) - [199587] return attributes of RemoteToolsFileSystem
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.text.CharacterIterator;
|
import java.text.CharacterIterator;
|
||||||
|
@ -23,11 +23,11 @@ import java.util.Map.Entry;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.eclipse.core.filesystem.IFileStore;
|
import org.eclipse.core.filesystem.IFileStore;
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.AbstractRemoteProcessBuilder;
|
import org.eclipse.remote.core.AbstractRemoteProcessBuilder;
|
||||||
import org.eclipse.remote.core.IRemoteFileManager;
|
import org.eclipse.remote.core.IRemoteFileManager;
|
||||||
import org.eclipse.remote.core.IRemoteProcess;
|
import org.eclipse.remote.core.IRemoteProcess;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.ChannelExec;
|
import com.jcraft.jsch.ChannelExec;
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.remote.core.AbstractRemoteServices;
|
import org.eclipse.remote.core.AbstractRemoteServices;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.IRemoteServicesDescriptor;
|
import org.eclipse.remote.core.IRemoteServicesDescriptor;
|
|
@ -9,7 +9,7 @@
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
* Roland Schulz, University of Tennessee
|
* Roland Schulz, University of Tennessee
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core;
|
package org.eclipse.remote.internal.jsch.core;
|
||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
@ -28,20 +28,20 @@ import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.ChildInfosCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.DeleteCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.FetchInfoCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.GetInputStreamCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.GetOutputStreamCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.MkdirCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.commands.PutInfoCommand;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionManager;
|
import org.eclipse.remote.core.IRemoteConnectionManager;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.ChildInfosCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.DeleteCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.FetchInfoCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.GetInputStreamCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.GetOutputStreamCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.MkdirCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.commands.PutInfoCommand;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
public class JschFileStore extends FileStore {
|
public class JschFileStore extends FileStore {
|
||||||
private static Map<String, JschFileStore> instanceMap = new HashMap<String, JschFileStore>();
|
private static Map<String, JschFileStore> instanceMap = new HashMap<String, JschFileStore>();
|
|
@ -9,7 +9,7 @@
|
||||||
* IBM Corporation - Initial Implementation
|
* IBM Corporation - Initial Implementation
|
||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
|
@ -27,9 +27,9 @@ import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.ChannelExec;
|
import com.jcraft.jsch.ChannelExec;
|
||||||
import com.jcraft.jsch.ChannelSftp;
|
import com.jcraft.jsch.ChannelSftp;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
|
@ -9,9 +9,9 @@ import org.eclipse.core.filesystem.IFileInfo;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.ChannelSftp.LsEntry;
|
import com.jcraft.jsch.ChannelSftp.LsEntry;
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import java.text.CharacterIterator;
|
import java.text.CharacterIterator;
|
||||||
import java.text.StringCharacterIterator;
|
import java.text.StringCharacterIterator;
|
||||||
|
@ -6,8 +6,8 @@ import java.text.StringCharacterIterator;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
|
||||||
public class DeleteCommand extends AbstractRemoteCommand<Void> {
|
public class DeleteCommand extends AbstractRemoteCommand<Void> {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import org.eclipse.core.filesystem.IFileInfo;
|
import org.eclipse.core.filesystem.IFileInfo;
|
||||||
import org.eclipse.core.filesystem.provider.FileInfo;
|
import org.eclipse.core.filesystem.provider.FileInfo;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.ChannelSftp;
|
import com.jcraft.jsch.ChannelSftp;
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
|
@ -8,9 +8,9 @@ import java.io.InputStream;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
||||||
import com.jcraft.jsch.SftpException;
|
import com.jcraft.jsch.SftpException;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
|
@ -11,8 +11,8 @@ import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
|
||||||
import com.jcraft.jsch.ChannelSftp;
|
import com.jcraft.jsch.ChannelSftp;
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
|
@ -1,12 +1,12 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import org.eclipse.core.filesystem.IFileInfo;
|
import org.eclipse.core.filesystem.IFileInfo;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
||||||
import com.jcraft.jsch.SftpException;
|
import com.jcraft.jsch.SftpException;
|
|
@ -1,13 +1,13 @@
|
||||||
package org.eclipse.internal.remote.jsch.core.commands;
|
package org.eclipse.remote.internal.jsch.core.commands;
|
||||||
|
|
||||||
import org.eclipse.core.filesystem.EFS;
|
import org.eclipse.core.filesystem.EFS;
|
||||||
import org.eclipse.core.filesystem.IFileInfo;
|
import org.eclipse.core.filesystem.IFileInfo;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.SubMonitor;
|
import org.eclipse.core.runtime.SubMonitor;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.messages.Messages;
|
||||||
|
|
||||||
import com.jcraft.jsch.JSchException;
|
import com.jcraft.jsch.JSchException;
|
||||||
import com.jcraft.jsch.SftpException;
|
import com.jcraft.jsch.SftpException;
|
|
@ -9,12 +9,12 @@
|
||||||
* IBM Corporation - Initial Implementation
|
* IBM Corporation - Initial Implementation
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package org.eclipse.internal.remote.jsch.core.messages;
|
package org.eclipse.remote.internal.jsch.core.messages;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
public class Messages extends NLS {
|
public class Messages extends NLS {
|
||||||
private static final String BUNDLE_ID = "org.eclipse.internal.remote.jsch.core.messages.messages"; //$NON-NLS-1$
|
private static final String BUNDLE_ID = "org.eclipse.remote.internal.jsch.core.messages.messages"; //$NON-NLS-1$
|
||||||
|
|
||||||
public static String AbstractRemoteCommand_Execution_exception;
|
public static String AbstractRemoteCommand_Execution_exception;
|
||||||
public static String AbstractRemoteCommand_Get_symlink_target;
|
public static String AbstractRemoteCommand_Get_symlink_target;
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.remote.jsch.ui;singleton:=true
|
Bundle-SymbolicName: org.eclipse.remote.jsch.ui;singleton:=true
|
||||||
Bundle-Version: 1.0.0.qualifier
|
Bundle-Version: 1.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.internal.remote.jsch.ui.Activator
|
Bundle-Activator: org.eclipse.remote.internal.jsch.ui.Activator
|
||||||
Bundle-Vendor: %pluginProvider
|
Bundle-Vendor: %pluginProvider
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
org.eclipse.core.filesystem,
|
org.eclipse.core.filesystem,
|
||||||
|
@ -18,7 +18,7 @@ Require-Bundle: org.eclipse.core.runtime,
|
||||||
org.eclipse.ui,
|
org.eclipse.ui,
|
||||||
org.eclipse.jface
|
org.eclipse.jface
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Export-Package: org.eclipse.internal.remote.jsch.ui;x-internal:=true,
|
Export-Package: org.eclipse.remote.internal.jsch.ui;x-internal:=true,
|
||||||
org.eclipse.internal.remote.jsch.ui.messages;x-internal:=true
|
org.eclipse.remote.internal.jsch.ui.messages;x-internal:=true
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.remote.ui.remoteUIServices">
|
point="org.eclipse.remote.ui.remoteUIServices">
|
||||||
<remoteUIServices
|
<remoteUIServices
|
||||||
class="org.eclipse.internal.remote.jsch.ui.JSchUIServicesFactory"
|
class="org.eclipse.remote.internal.jsch.ui.JSchUIServicesFactory"
|
||||||
id="org.eclipse.remote.JSch"
|
id="org.eclipse.remote.JSch"
|
||||||
name="JSch">
|
name="JSch">
|
||||||
</remoteUIServices>
|
</remoteUIServices>
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.ide.filesystemSupport">
|
point="org.eclipse.ui.ide.filesystemSupport">
|
||||||
<filesystemContributor
|
<filesystemContributor
|
||||||
class="org.eclipse.internal.remote.jsch.ui.JSchFileSystemContributor"
|
class="org.eclipse.remote.internal.jsch.ui.JSchFileSystemContributor"
|
||||||
label="JSch"
|
label="JSch"
|
||||||
scheme="ssh">
|
scheme="ssh">
|
||||||
</filesystemContributor>
|
</filesystemContributor>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.eclipse.internal.remote.jsch.ui;
|
package org.eclipse.remote.internal.jsch.ui;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Plugin;
|
import org.eclipse.core.runtime.Plugin;
|
|
@ -21,17 +21,17 @@
|
||||||
* David Dykstal (IBM) - [235840] externalizing dialog title
|
* David Dykstal (IBM) - [235840] externalizing dialog title
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.jsch.ui;
|
package org.eclipse.remote.internal.jsch.ui;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
|
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchFileSystem;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchServices;
|
|
||||||
import org.eclipse.internal.remote.jsch.ui.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchFileSystem;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchServices;
|
||||||
|
import org.eclipse.remote.internal.jsch.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIFileManager;
|
import org.eclipse.remote.ui.IRemoteUIFileManager;
|
||||||
import org.eclipse.remote.ui.IRemoteUIServices;
|
import org.eclipse.remote.ui.IRemoteUIServices;
|
||||||
import org.eclipse.remote.ui.RemoteUIServices;
|
import org.eclipse.remote.ui.RemoteUIServices;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.ui;
|
package org.eclipse.remote.internal.jsch.ui;
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.net.PasswordAuthentication;
|
import java.net.PasswordAuthentication;
|
||||||
|
@ -16,9 +16,6 @@ import java.net.PasswordAuthentication;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnectionManager;
|
|
||||||
import org.eclipse.internal.remote.jsch.ui.messages.Messages;
|
|
||||||
import org.eclipse.internal.remote.jsch.ui.wizards.JSchConnectionWizard;
|
|
||||||
import org.eclipse.jface.dialogs.ErrorDialog;
|
import org.eclipse.jface.dialogs.ErrorDialog;
|
||||||
import org.eclipse.jface.dialogs.IDialogConstants;
|
import org.eclipse.jface.dialogs.IDialogConstants;
|
||||||
import org.eclipse.jface.dialogs.MessageDialog;
|
import org.eclipse.jface.dialogs.MessageDialog;
|
||||||
|
@ -30,6 +27,9 @@ import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.IUserAuthenticator;
|
import org.eclipse.remote.core.IUserAuthenticator;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnectionManager;
|
||||||
|
import org.eclipse.remote.internal.jsch.ui.messages.Messages;
|
||||||
|
import org.eclipse.remote.internal.jsch.ui.wizards.JSchConnectionWizard;
|
||||||
import org.eclipse.remote.ui.AbstractRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.AbstractRemoteUIConnectionManager;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
||||||
import org.eclipse.swt.widgets.Display;
|
import org.eclipse.swt.widgets.Display;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.ui;
|
package org.eclipse.remote.internal.jsch.ui;
|
||||||
|
|
||||||
import org.eclipse.jface.window.Window;
|
import org.eclipse.jface.window.Window;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.ui;
|
package org.eclipse.remote.internal.jsch.ui;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.jsch.ui;
|
package org.eclipse.remote.internal.jsch.ui;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.ui.IRemoteUIServices;
|
import org.eclipse.remote.ui.IRemoteUIServices;
|
|
@ -9,12 +9,12 @@
|
||||||
* IBM Corporation - Initial Implementation
|
* IBM Corporation - Initial Implementation
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package org.eclipse.internal.remote.jsch.ui.messages;
|
package org.eclipse.remote.internal.jsch.ui.messages;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
public class Messages extends NLS {
|
public class Messages extends NLS {
|
||||||
private static final String BUNDLE_ID = "org.eclipse.internal.remote.jsch.ui.messages.messages"; //$NON-NLS-1$
|
private static final String BUNDLE_ID = "org.eclipse.remote.internal.jsch.ui.messages.messages"; //$NON-NLS-1$
|
||||||
|
|
||||||
static {
|
static {
|
||||||
// load message values from bundle file
|
// load message values from bundle file
|
|
@ -9,22 +9,22 @@
|
||||||
* IBM Corporation - Initial Implementation
|
* IBM Corporation - Initial Implementation
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package org.eclipse.internal.remote.jsch.ui.wizards;
|
package org.eclipse.remote.internal.jsch.ui.wizards;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.eclipse.internal.remote.jsch.core.Activator;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnection;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnectionAttributes;
|
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnectionWorkingCopy;
|
|
||||||
import org.eclipse.internal.remote.jsch.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.wizard.WizardPage;
|
import org.eclipse.jface.wizard.WizardPage;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionManager;
|
import org.eclipse.remote.core.IRemoteConnectionManager;
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.Activator;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnection;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnectionAttributes;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnectionWorkingCopy;
|
||||||
|
import org.eclipse.remote.internal.jsch.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.widgets.RemoteFileWidget;
|
import org.eclipse.remote.ui.widgets.RemoteFileWidget;
|
||||||
import org.eclipse.swt.SWT;
|
import org.eclipse.swt.SWT;
|
||||||
import org.eclipse.swt.events.ModifyEvent;
|
import org.eclipse.swt.events.ModifyEvent;
|
|
@ -9,15 +9,15 @@
|
||||||
* IBM Corporation - Initial Implementation
|
* IBM Corporation - Initial Implementation
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package org.eclipse.internal.remote.jsch.ui.wizards;
|
package org.eclipse.remote.internal.jsch.ui.wizards;
|
||||||
|
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.eclipse.internal.remote.jsch.core.JSchConnectionWorkingCopy;
|
|
||||||
import org.eclipse.jface.wizard.Wizard;
|
import org.eclipse.jface.wizard.Wizard;
|
||||||
import org.eclipse.jface.wizard.WizardDialog;
|
import org.eclipse.jface.wizard.WizardDialog;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionManager;
|
import org.eclipse.remote.core.IRemoteConnectionManager;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
||||||
|
import org.eclipse.remote.internal.jsch.core.JSchConnectionWorkingCopy;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
||||||
import org.eclipse.swt.widgets.Shell;
|
import org.eclipse.swt.widgets.Shell;
|
||||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.remote.ui;singleton:=true
|
Bundle-SymbolicName: org.eclipse.remote.ui;singleton:=true
|
||||||
Bundle-Version: 1.0.0.qualifier
|
Bundle-Version: 1.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.internal.remote.ui.RemoteUIPlugin
|
Bundle-Activator: org.eclipse.remote.internal.ui.RemoteUIPlugin
|
||||||
Bundle-Vendor: %pluginProvider
|
Bundle-Vendor: %pluginProvider
|
||||||
Require-Bundle: org.eclipse.ui,
|
Require-Bundle: org.eclipse.ui,
|
||||||
org.eclipse.ui.ide,
|
org.eclipse.ui.ide,
|
||||||
|
@ -14,10 +14,10 @@ Require-Bundle: org.eclipse.ui,
|
||||||
org.eclipse.core.resources
|
org.eclipse.core.resources
|
||||||
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Export-Package: org.eclipse.internal.remote.ui;x-internal:=true,
|
Export-Package: org.eclipse.remote.internal.ui;x-internal:=true,
|
||||||
org.eclipse.internal.remote.ui.messages;x-internal:=true,
|
org.eclipse.remote.internal.ui.messages;x-internal:=true,
|
||||||
org.eclipse.internal.remote.ui.preferences;x-internal:=true,
|
org.eclipse.remote.internal.ui.preferences;x-internal:=true,
|
||||||
org.eclipse.internal.remote.ui.services.local;x-internal:=true,
|
org.eclipse.remote.internal.ui.services.local;x-internal:=true,
|
||||||
org.eclipse.remote.ui,
|
org.eclipse.remote.ui,
|
||||||
org.eclipse.remote.ui.dialogs,
|
org.eclipse.remote.ui.dialogs,
|
||||||
org.eclipse.remote.ui.widgets
|
org.eclipse.remote.ui.widgets
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.remote.ui.remoteUIServices">
|
point="org.eclipse.remote.ui.remoteUIServices">
|
||||||
<remoteUIServices
|
<remoteUIServices
|
||||||
class="org.eclipse.internal.remote.ui.services.local.LocalUIServicesFactory"
|
class="org.eclipse.remote.internal.ui.services.local.LocalUIServicesFactory"
|
||||||
id="org.eclipse.remote.LocalServices"
|
id="org.eclipse.remote.LocalServices"
|
||||||
name="Local">
|
name="Local">
|
||||||
</remoteUIServices>
|
</remoteUIServices>
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.preferencePages">
|
point="org.eclipse.ui.preferencePages">
|
||||||
<page
|
<page
|
||||||
class="org.eclipse.internal.remote.ui.preferences.RemoteDevelopmentPreferencePage"
|
class="org.eclipse.remote.internal.ui.preferences.RemoteDevelopmentPreferencePage"
|
||||||
id="org.eclipse.remote.ui.RemoteDevelopmentPreferencePage"
|
id="org.eclipse.remote.ui.RemoteDevelopmentPreferencePage"
|
||||||
name="%RemoteDevPrefPage.name">
|
name="%RemoteDevPrefPage.name">
|
||||||
</page>
|
</page>
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
point="org.eclipse.ui.preferencePages">
|
point="org.eclipse.ui.preferencePages">
|
||||||
<page
|
<page
|
||||||
category="org.eclipse.remote.ui.RemoteDevelopmentPreferencePage"
|
category="org.eclipse.remote.ui.RemoteDevelopmentPreferencePage"
|
||||||
class="org.eclipse.internal.remote.ui.preferences.ConnectionsPreferencePage"
|
class="org.eclipse.remote.internal.ui.preferences.ConnectionsPreferencePage"
|
||||||
id="org.eclipse.remote.connections"
|
id="org.eclipse.remote.connections"
|
||||||
name="%ConnectionsPreferencePage.name">
|
name="%ConnectionsPreferencePage.name">
|
||||||
</page>
|
</page>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
|
@ -9,7 +9,7 @@
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
import org.eclipse.jface.resource.CompositeImageDescriptor;
|
import org.eclipse.jface.resource.CompositeImageDescriptor;
|
||||||
import org.eclipse.jface.resource.ImageDescriptor;
|
import org.eclipse.jface.resource.ImageDescriptor;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
import org.eclipse.jface.viewers.AbstractTreeViewer;
|
import org.eclipse.jface.viewers.AbstractTreeViewer;
|
||||||
import org.eclipse.jface.viewers.Viewer;
|
import org.eclipse.jface.viewers.Viewer;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
|
|
||||||
import org.eclipse.core.filesystem.IFileInfo;
|
import org.eclipse.core.filesystem.IFileInfo;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||||
import org.osgi.framework.BundleContext;
|
import org.osgi.framework.BundleContext;
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui;
|
package org.eclipse.remote.internal.ui;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IConfigurationElement;
|
import org.eclipse.core.runtime.IConfigurationElement;
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIServices;
|
import org.eclipse.remote.ui.IRemoteUIServices;
|
||||||
import org.eclipse.remote.ui.IRemoteUIServicesDescriptor;
|
import org.eclipse.remote.ui.IRemoteUIServicesDescriptor;
|
||||||
import org.eclipse.remote.ui.IRemoteUIServicesFactory;
|
import org.eclipse.remote.ui.IRemoteUIServicesFactory;
|
|
@ -9,12 +9,12 @@
|
||||||
* IBM - Initial API and implementation
|
* IBM - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.ui.messages;
|
package org.eclipse.remote.internal.ui.messages;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
public class Messages extends NLS {
|
public class Messages extends NLS {
|
||||||
private static final String BUNDLE_NAME = "org.eclipse.internal.remote.ui.messages.messages"; //$NON-NLS-1$
|
private static final String BUNDLE_NAME = "org.eclipse.remote.internal.ui.messages.messages"; //$NON-NLS-1$
|
||||||
|
|
||||||
public static String AbstractRemoteUIConnectionManager_Connection_Error;
|
public static String AbstractRemoteUIConnectionManager_Connection_Error;
|
||||||
|
|
|
@ -8,17 +8,13 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui.preferences;
|
package org.eclipse.remote.internal.ui.preferences;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesDescriptor;
|
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesImpl;
|
|
||||||
import org.eclipse.internal.remote.core.preferences.Preferences;
|
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.dialogs.IDialogConstants;
|
import org.eclipse.jface.dialogs.IDialogConstants;
|
||||||
import org.eclipse.jface.dialogs.MessageDialog;
|
import org.eclipse.jface.dialogs.MessageDialog;
|
||||||
import org.eclipse.jface.preference.PreferencePage;
|
import org.eclipse.jface.preference.PreferencePage;
|
||||||
|
@ -38,6 +34,10 @@ import org.eclipse.remote.core.IRemotePreferenceConstants;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteServicesDescriptor;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteServicesImpl;
|
||||||
|
import org.eclipse.remote.internal.core.preferences.Preferences;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
||||||
import org.eclipse.remote.ui.RemoteUIServices;
|
import org.eclipse.remote.ui.RemoteUIServices;
|
|
@ -9,15 +9,15 @@
|
||||||
* IBM Corporation - initial API and implementation
|
* IBM Corporation - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.ui.preferences;
|
package org.eclipse.remote.internal.ui.preferences;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.ListenerList;
|
import org.eclipse.core.runtime.ListenerList;
|
||||||
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
|
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
|
||||||
import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
|
import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
|
||||||
import org.eclipse.internal.remote.core.preferences.Preferences;
|
|
||||||
import org.eclipse.jface.preference.IPreferenceStore;
|
import org.eclipse.jface.preference.IPreferenceStore;
|
||||||
import org.eclipse.jface.util.IPropertyChangeListener;
|
import org.eclipse.jface.util.IPropertyChangeListener;
|
||||||
import org.eclipse.jface.util.PropertyChangeEvent;
|
import org.eclipse.jface.util.PropertyChangeEvent;
|
||||||
|
import org.eclipse.remote.internal.core.preferences.Preferences;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adapts {@link org.eclipse.core.runtime.IEclipsePreferences} to {@link org.eclipse.jface.preference.IPreferenceStore}
|
* Adapts {@link org.eclipse.core.runtime.IEclipsePreferences} to {@link org.eclipse.jface.preference.IPreferenceStore}
|
|
@ -9,17 +9,17 @@
|
||||||
* IBM - Initial API and implementation
|
* IBM - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.internal.remote.ui.preferences;
|
package org.eclipse.remote.internal.ui.preferences;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesDescriptor;
|
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesImpl;
|
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.preference.ComboFieldEditor;
|
import org.eclipse.jface.preference.ComboFieldEditor;
|
||||||
import org.eclipse.jface.preference.FieldEditorPreferencePage;
|
import org.eclipse.jface.preference.FieldEditorPreferencePage;
|
||||||
import org.eclipse.remote.core.IRemotePreferenceConstants;
|
import org.eclipse.remote.core.IRemotePreferenceConstants;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteServicesDescriptor;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteServicesImpl;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.ui.IWorkbench;
|
import org.eclipse.ui.IWorkbench;
|
||||||
import org.eclipse.ui.IWorkbenchPreferencePage;
|
import org.eclipse.ui.IWorkbenchPreferencePage;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui.services.local;
|
package org.eclipse.remote.internal.ui.services.local;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui.services.local;
|
package org.eclipse.remote.internal.ui.services.local;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM Corporation - Initial API and implementation
|
* IBM Corporation - Initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.internal.remote.ui.services.local;
|
package org.eclipse.remote.internal.ui.services.local;
|
||||||
|
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.ui.IRemoteUIServices;
|
import org.eclipse.remote.ui.IRemoteUIServices;
|
|
@ -15,14 +15,14 @@ import java.lang.reflect.InvocationTargetException;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.internal.remote.ui.RemoteUIPlugin;
|
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.dialogs.ErrorDialog;
|
import org.eclipse.jface.dialogs.ErrorDialog;
|
||||||
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
|
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
|
||||||
import org.eclipse.jface.operation.IRunnableContext;
|
import org.eclipse.jface.operation.IRunnableContext;
|
||||||
import org.eclipse.jface.operation.IRunnableWithProgress;
|
import org.eclipse.jface.operation.IRunnableWithProgress;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
import org.eclipse.remote.core.exception.RemoteConnectionException;
|
||||||
|
import org.eclipse.remote.internal.ui.RemoteUIPlugin;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.swt.widgets.Shell;
|
import org.eclipse.swt.widgets.Shell;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -20,13 +20,13 @@ import org.eclipse.core.runtime.IExtensionPoint;
|
||||||
import org.eclipse.core.runtime.IExtensionRegistry;
|
import org.eclipse.core.runtime.IExtensionRegistry;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.internal.remote.ui.RemoteUIPlugin;
|
|
||||||
import org.eclipse.internal.remote.ui.RemoteUIServicesDescriptor;
|
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.operation.IRunnableContext;
|
import org.eclipse.jface.operation.IRunnableContext;
|
||||||
import org.eclipse.jface.operation.IRunnableWithProgress;
|
import org.eclipse.jface.operation.IRunnableWithProgress;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
|
import org.eclipse.remote.internal.ui.RemoteUIPlugin;
|
||||||
|
import org.eclipse.remote.internal.ui.RemoteUIServicesDescriptor;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.ui.PlatformUI;
|
import org.eclipse.ui.PlatformUI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -15,11 +15,6 @@ import java.util.Vector;
|
||||||
import org.eclipse.core.filesystem.IFileStore;
|
import org.eclipse.core.filesystem.IFileStore;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
import org.eclipse.internal.remote.ui.DeferredFileStore;
|
|
||||||
import org.eclipse.internal.remote.ui.RemoteContentProvider;
|
|
||||||
import org.eclipse.internal.remote.ui.RemoteResourceComparator;
|
|
||||||
import org.eclipse.internal.remote.ui.RemoteUIImages;
|
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.dialogs.Dialog;
|
import org.eclipse.jface.dialogs.Dialog;
|
||||||
import org.eclipse.jface.dialogs.IDialogConstants;
|
import org.eclipse.jface.dialogs.IDialogConstants;
|
||||||
import org.eclipse.jface.viewers.DoubleClickEvent;
|
import org.eclipse.jface.viewers.DoubleClickEvent;
|
||||||
|
@ -34,6 +29,11 @@ import org.eclipse.jface.viewers.ViewerFilter;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteFileManager;
|
import org.eclipse.remote.core.IRemoteFileManager;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
|
import org.eclipse.remote.internal.ui.DeferredFileStore;
|
||||||
|
import org.eclipse.remote.internal.ui.RemoteContentProvider;
|
||||||
|
import org.eclipse.remote.internal.ui.RemoteResourceComparator;
|
||||||
|
import org.eclipse.remote.internal.ui.RemoteUIImages;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
||||||
import org.eclipse.remote.ui.RemoteUIServices;
|
import org.eclipse.remote.ui.RemoteUIServices;
|
||||||
import org.eclipse.remote.ui.widgets.RemoteConnectionWidget;
|
import org.eclipse.remote.ui.widgets.RemoteConnectionWidget;
|
||||||
|
|
|
@ -15,10 +15,6 @@ import java.util.Set;
|
||||||
import java.util.TreeSet;
|
import java.util.TreeSet;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.ListenerList;
|
import org.eclipse.core.runtime.ListenerList;
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesDescriptor;
|
|
||||||
import org.eclipse.internal.remote.core.RemoteServicesImpl;
|
|
||||||
import org.eclipse.internal.remote.core.preferences.Preferences;
|
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.jface.operation.IRunnableContext;
|
import org.eclipse.jface.operation.IRunnableContext;
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
import org.eclipse.remote.core.IRemoteConnectionManager;
|
import org.eclipse.remote.core.IRemoteConnectionManager;
|
||||||
|
@ -26,6 +22,10 @@ import org.eclipse.remote.core.IRemoteConnectionWorkingCopy;
|
||||||
import org.eclipse.remote.core.IRemotePreferenceConstants;
|
import org.eclipse.remote.core.IRemotePreferenceConstants;
|
||||||
import org.eclipse.remote.core.IRemoteServices;
|
import org.eclipse.remote.core.IRemoteServices;
|
||||||
import org.eclipse.remote.core.RemoteServices;
|
import org.eclipse.remote.core.RemoteServices;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteServicesDescriptor;
|
||||||
|
import org.eclipse.remote.internal.core.RemoteServicesImpl;
|
||||||
|
import org.eclipse.remote.internal.core.preferences.Preferences;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
import org.eclipse.remote.ui.IRemoteUIConnectionWizard;
|
||||||
import org.eclipse.remote.ui.RemoteUIServices;
|
import org.eclipse.remote.ui.RemoteUIServices;
|
||||||
|
|
|
@ -14,8 +14,8 @@ import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.ListenerList;
|
import org.eclipse.core.runtime.ListenerList;
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
||||||
import org.eclipse.remote.ui.IRemoteUIFileManager;
|
import org.eclipse.remote.ui.IRemoteUIFileManager;
|
||||||
import org.eclipse.remote.ui.RemoteUIServices;
|
import org.eclipse.remote.ui.RemoteUIServices;
|
||||||
|
|
|
@ -14,8 +14,8 @@ import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.ListenerList;
|
import org.eclipse.core.runtime.ListenerList;
|
||||||
import org.eclipse.internal.remote.ui.messages.Messages;
|
|
||||||
import org.eclipse.remote.core.IRemoteConnection;
|
import org.eclipse.remote.core.IRemoteConnection;
|
||||||
|
import org.eclipse.remote.internal.ui.messages.Messages;
|
||||||
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
import org.eclipse.remote.ui.IRemoteUIConnectionManager;
|
||||||
import org.eclipse.remote.ui.IRemoteUIFileManager;
|
import org.eclipse.remote.ui.IRemoteUIFileManager;
|
||||||
import org.eclipse.remote.ui.RemoteUIServices;
|
import org.eclipse.remote.ui.RemoteUIServices;
|
||||||
|
|
Loading…
Add table
Reference in a new issue