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

[180526] import/export and user actions to internal

This commit is contained in:
David McKnight 2007-04-11 19:57:27 +00:00
parent 552569591e
commit c002efb2d6
48 changed files with 89 additions and 89 deletions

View file

@ -4,12 +4,12 @@ Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.rse.importexport; singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-ClassPath: systemsImportExport.jar
Bundle-Activator: org.eclipse.rse.importexport.RemoteImportExportPlugin
Bundle-Activator: org.eclipse.rse.internal.importexport.RemoteImportExportPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Export-Package: org.eclipse.rse.files.importexport,
org.eclipse.rse.files.importexport.files,
org.eclipse.rse.importexport
Export-Package:
org.eclipse.rse.internal.importexport,
org.eclipse.rse.internal.importexport.files
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.ui,

View file

@ -9,7 +9,7 @@
<wizard
name="%RemoteFileSystemImportWizard.label"
icon="icons/full/etool16/file_import.gif"
class="org.eclipse.rse.files.importexport.files.RemoteImportWizard"
class="org.eclipse.rse.internal.importexport.files.RemoteImportWizard"
id="org.eclipse.rse.files.importexport.fileImportWizard">
<description>
%RemoteFileSystemImportWizard.description
@ -29,7 +29,7 @@
<action
label="%RemoteFileImportAction.label"
tooltip="%RemoteFileImportAction.tooltip"
class="org.eclipse.rse.files.importexport.files.RemoteFileImportActionDelegate"
class="org.eclipse.rse.internal.importexport.files.RemoteFileImportActionDelegate"
menubarPath="additions"
enablesFor="+"
id="importRemoteFiles">
@ -42,7 +42,7 @@
<action
label="%OpenRemoteFileImport.label"
tooltip="%OpenRemoteFileImport.tooltip"
class="org.eclipse.rse.files.importexport.files.RemoteFileOpenImportWizardActionDelegate"
class="org.eclipse.rse.internal.importexport.files.RemoteFileOpenImportWizardActionDelegate"
menubarPath="additions"
enablesFor="1"
id="openRemoteFileImport">
@ -55,7 +55,7 @@
<wizard
name="%RemoteFileSystemExportWizard.label"
icon="icons/full/etool16/file_export.gif"
class="org.eclipse.rse.files.importexport.files.RemoteExportWizard"
class="org.eclipse.rse.internal.importexport.files.RemoteExportWizard"
id="org.eclipse.rse.files.importexport.fileExportWizard">
<description>
%RemoteFileSystemExportWizard.description
@ -75,7 +75,7 @@
<action
label="%RemoteFileExportAction.label"
tooltip="%RemoteFileExportAction.tooltip"
class="org.eclipse.rse.files.importexport.files.RemoteFileExportActionDelegate"
class="org.eclipse.rse.internal.importexport.files.RemoteFileExportActionDelegate"
menubarPath="additions"
enablesFor="+"
id="exportRemoteFiles">
@ -88,7 +88,7 @@
<action
label="%OpenRemoteFileExport.label"
tooltip="%OpenRemoteFileExport.tooltip"
class="org.eclipse.rse.files.importexport.files.RemoteFileOpenExportWizardActionDelegate"
class="org.eclipse.rse.internal.importexport.files.RemoteFileOpenExportWizardActionDelegate"
menubarPath="additions"
enablesFor="1"
id="openRemoteFileExport">
@ -109,7 +109,7 @@
<action
label="%ImportToProject.label"
tooltip="%ImportToProject.tooltip"
class="org.eclipse.rse.files.importexport.files.RemoteFileImportToProjectActionDelegate"
class="org.eclipse.rse.internal.importexport.files.RemoteFileImportToProjectActionDelegate"
menubarPath="group.importexport"
enablesFor="1"
id="importToProject">
@ -118,7 +118,7 @@
<action
label="%ExportFromProject.label"
tooltip="%ExportFromProject.tooltip"
class="org.eclipse.rse.files.importexport.files.RemoteFileExportFromProjectActionDelegate"
class="org.eclipse.rse.internal.importexport.files.RemoteFileExportFromProjectActionDelegate"
menubarPath="group.importexport"
enablesFor="1"
id="exportFromProject">

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport;
package org.eclipse.rse.internal.importexport;
/**
* Interface containing contstants required for import and export.

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.Assert;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.dialogs.ErrorDialog;

View file

@ -8,12 +8,12 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.osgi.util.NLS;
public class RemoteImportExportResources extends NLS {
private static String BUNDLE_NAME = "org.eclipse.rse.files.importexport.RemoteImportExportResources"; //$NON-NLS-1$
private static String BUNDLE_NAME = "org.eclipse.rse.internal.importexport.RemoteImportExportResources"; //$NON-NLS-1$
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_TITLE;
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_MESSAGE;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.core.resources.IFile;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
@ -22,7 +22,7 @@ import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.files.importexport.files.RemoteFileExportActionDelegate;
import org.eclipse.rse.internal.importexport.files.RemoteFileExportActionDelegate;
/**
* Utility class for import and export. A singleton class.

View file

@ -8,12 +8,12 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.importexport;
package org.eclipse.rse.internal.importexport;
import org.eclipse.osgi.util.NLS;
public class SystemImportExportResources extends NLS {
private static String BUNDLE_NAME = "org.eclipse.rse.importexport.SystemImportExportResources";//$NON-NLS-1$
private static String BUNDLE_NAME = "org.eclipse.rse.internal.importexport.SystemImportExportResources";//$NON-NLS-1$
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_MESSAGE;
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_TITLE;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
public class Debug {
//execution time switches

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
@ -15,7 +15,7 @@ import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.rse.importexport.SystemImportExportResources;
import org.eclipse.rse.internal.importexport.SystemImportExportResources;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.wizards.AbstractSystemWizard;
import org.eclipse.ui.IEditorPart;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
@ -30,10 +30,10 @@ import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.window.Window;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.files.importexport.RemoteImportExportResources;
import org.eclipse.rse.files.importexport.RemoteImportExportUtil;
import org.eclipse.rse.files.ui.actions.SystemSelectRemoteFolderAction;
import org.eclipse.rse.importexport.SystemImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportUtil;
import org.eclipse.rse.internal.importexport.SystemImportExportResources;
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile;
import org.eclipse.rse.ui.ISystemMessages;

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.lang.reflect.InvocationTargetException;
import java.text.MessageFormat;
@ -23,8 +23,8 @@ import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.action.IAction;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.files.importexport.RemoteImportExportProblemDialog;
import org.eclipse.rse.files.importexport.RemoteImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportProblemDialog;
import org.eclipse.rse.internal.importexport.RemoteImportExportResources;
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.ui.ISystemMessages;
import org.eclipse.rse.ui.RSEUIPlugin;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.InputStream;
import java.io.OutputStream;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.BufferedInputStream;
import java.io.IOException;
@ -52,7 +52,7 @@ public class RemoteFileExportDescriptionReader implements IRemoteFileExportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileExportDescriptionReader#read(org.eclipse.rse.files.importexport.files.RemoteFileExportData)
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileExportDescriptionReader#read(org.eclipse.rse.internal.importexport.files.RemoteFileExportData)
*/
public void read(RemoteFileExportData exportData) throws CoreException {
try {
@ -180,7 +180,7 @@ public class RemoteFileExportDescriptionReader implements IRemoteFileExportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileExportDescriptionReader#close()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileExportDescriptionReader#close()
*/
public void close() throws CoreException {
if (fInputStream != null) {
@ -194,7 +194,7 @@ public class RemoteFileExportDescriptionReader implements IRemoteFileExportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileExportDescriptionReader#getStatus()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileExportDescriptionReader#getStatus()
*/
public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.BufferedOutputStream;
import java.io.IOException;
@ -51,7 +51,7 @@ public class RemoteFileExportDescriptionWriter implements IRemoteFileExportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileExportDescriptionWriter#write(org.eclipse.rse.files.importexport.files.RemoteFileExportData)
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileExportDescriptionWriter#write(org.eclipse.rse.internal.importexport.files.RemoteFileExportData)
*/
public void write(RemoteFileExportData exportData) throws CoreException {
try {
@ -147,7 +147,7 @@ public class RemoteFileExportDescriptionWriter implements IRemoteFileExportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileExportDescriptionWriter#close()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileExportDescriptionWriter#close()
*/
public void close() throws CoreException {
if (fOutputStream != null) {
@ -161,7 +161,7 @@ public class RemoteFileExportDescriptionWriter implements IRemoteFileExportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileExportDescriptionWriter#getStatus()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileExportDescriptionWriter#getStatus()
*/
public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.wizard.WizardDialog;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
@ -32,9 +32,9 @@ import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.operation.ModalContext;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.files.importexport.RemoteImportExportUtil;
import org.eclipse.rse.files.ui.resources.SystemIFileProperties;
import org.eclipse.rse.importexport.SystemImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportUtil;
import org.eclipse.rse.internal.importexport.SystemImportExportResources;
import org.eclipse.rse.services.files.RemoteFileIOException;
import org.eclipse.rse.services.files.RemoteFileSecurityException;
import org.eclipse.rse.ui.ISystemMessages;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.lang.reflect.InvocationTargetException;
import java.text.MessageFormat;
@ -23,8 +23,8 @@ import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.action.IAction;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.files.importexport.RemoteImportExportProblemDialog;
import org.eclipse.rse.files.importexport.RemoteImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportProblemDialog;
import org.eclipse.rse.internal.importexport.RemoteImportExportResources;
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.ui.ISystemMessages;
import org.eclipse.rse.ui.RSEUIPlugin;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.InputStream;
import java.io.OutputStream;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.BufferedInputStream;
import java.io.IOException;
@ -52,7 +52,7 @@ public class RemoteFileImportDescriptionReader implements IRemoteFileImportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileImportDescriptionReader#read(org.eclipse.rse.files.importexport.files.RemoteFileImportData)
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileImportDescriptionReader#read(org.eclipse.rse.internal.importexport.files.RemoteFileImportData)
*/
public void read(RemoteFileImportData importData) throws CoreException {
try {
@ -169,7 +169,7 @@ public class RemoteFileImportDescriptionReader implements IRemoteFileImportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileImportDescriptionReader#close()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileImportDescriptionReader#close()
*/
public void close() throws CoreException {
if (fInputStream != null) {
@ -184,7 +184,7 @@ public class RemoteFileImportDescriptionReader implements IRemoteFileImportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileImportDescriptionReader#getStatus()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileImportDescriptionReader#getStatus()
*/
public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.BufferedOutputStream;
import java.io.IOException;
@ -50,7 +50,7 @@ public class RemoteFileImportDescriptionWriter implements IRemoteFileImportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileImportDescriptionWriter#write(org.eclipse.rse.files.importexport.files.RemoteFileImportData)
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileImportDescriptionWriter#write(org.eclipse.rse.internal.importexport.files.RemoteFileImportData)
*/
public void write(RemoteFileImportData importData) throws CoreException {
try {
@ -149,7 +149,7 @@ public class RemoteFileImportDescriptionWriter implements IRemoteFileImportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileImportDescriptionWriter#close()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileImportDescriptionWriter#close()
*/
public void close() throws CoreException {
if (fOutputStream != null) {
@ -163,7 +163,7 @@ public class RemoteFileImportDescriptionWriter implements IRemoteFileImportDescr
}
/**
* @see org.eclipse.rse.files.importexport.files.IRemoteFileImportDescriptionWriter#getStatus()
* @see org.eclipse.rse.internal.importexport.files.IRemoteFileImportDescriptionWriter#getStatus()
*/
public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.util.Iterator;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
@ -34,8 +34,8 @@ import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.SubProgressMonitor;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.files.importexport.RemoteImportExportUtil;
import org.eclipse.rse.importexport.SystemImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportUtil;
import org.eclipse.rse.internal.importexport.SystemImportExportResources;
import org.eclipse.rse.services.files.RemoteFileIOException;
import org.eclipse.rse.services.files.RemoteFileSecurityException;
import org.eclipse.rse.subsystems.files.core.model.RemoteFileUtility;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.wizard.WizardDialog;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.IOException;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.IOException;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.text.MessageFormat;
@ -16,7 +16,7 @@ import org.eclipse.core.runtime.Path;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.files.importexport.RemoteImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportResources;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.dialogs.IOverwriteQuery;

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
@ -14,7 +14,7 @@ import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.rse.importexport.SystemImportExportResources;
import org.eclipse.rse.internal.importexport.SystemImportExportResources;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.wizards.AbstractSystemWizard;
import org.eclipse.ui.IImportWizard;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
@ -37,10 +37,10 @@ import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jface.window.Window;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.files.importexport.RemoteImportExportResources;
import org.eclipse.rse.files.importexport.RemoteImportExportUtil;
import org.eclipse.rse.files.ui.actions.SystemSelectRemoteFolderAction;
import org.eclipse.rse.importexport.SystemImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportResources;
import org.eclipse.rse.internal.importexport.RemoteImportExportUtil;
import org.eclipse.rse.internal.importexport.SystemImportExportResources;
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile;
import org.eclipse.rse.ui.ISystemMessages;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.swt.SWT;
import org.eclipse.swt.dnd.DropTargetAdapter;

View file

@ -8,7 +8,7 @@
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.swt.dnd.DropTargetAdapter;
import org.eclipse.swt.dnd.DropTargetEvent;

View file

@ -1,4 +1,4 @@
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -9,11 +9,11 @@
* IBM Corporation - initial API and implementation
* Martin Oberhuber (Wind River) - [180562][api] dont implement IRemoteImportExportConstants
*******************************************************************************/
package org.eclipse.rse.files.importexport.files;
package org.eclipse.rse.internal.importexport.files;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.files.importexport.IRemoteImportExportConstants;
import org.eclipse.rse.internal.importexport.IRemoteImportExportConstants;
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.services.clientserver.messages.SystemMessageException;
import org.eclipse.rse.subsystems.files.core.model.RemoteFileUtility;

View file

@ -13,7 +13,7 @@ package org.eclipse.rse.internal.useractions;
import org.eclipse.osgi.util.NLS;
public class UserActionsResources extends NLS {
private static String BUNDLE_NAME = "org.eclipse.rse.useractions.UserActionsResources"; //$NON-NLS-1$
private static String BUNDLE_NAME = "org.eclipse.rse.internal.useractions.UserActionsResources"; //$NON-NLS-1$
// Property sheet values: Categories in Team view
public static String RESID_PROPERTY_TEAM_USERACTION_TYPE_VALUE;
public static String RESID_PROPERTY_TEAM_COMPILETYPE_TYPE_VALUE;

View file

@ -13,7 +13,7 @@ package org.eclipse.rse.internal.useractions.ui.uda;
import org.eclipse.osgi.util.NLS;
public class SystemUDAResources extends NLS {
private static String BUNDLE_NAME = "org.eclipse.rse.useractions.ui.uda.SystemUDAResources";//$NON-NLS-1$
private static String BUNDLE_NAME = "org.eclipse.rse.internal.useractions.ui.uda.SystemUDAResources";//$NON-NLS-1$
// WORK WITH USER DEFINED ACTIONS DIALOG...
public static String RESID_WORKWITH_UDAS_TITLE;
public static String RESID_WORKWITH_UDAS_ACTION_LABEL;