1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-09 01:55: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-SymbolicName: org.eclipse.rse.importexport; singleton:=true
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Bundle-ClassPath: systemsImportExport.jar Bundle-ClassPath: systemsImportExport.jar
Bundle-Activator: org.eclipse.rse.importexport.RemoteImportExportPlugin Bundle-Activator: org.eclipse.rse.internal.importexport.RemoteImportExportPlugin
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin Bundle-Localization: plugin
Export-Package: org.eclipse.rse.files.importexport, Export-Package:
org.eclipse.rse.files.importexport.files, org.eclipse.rse.internal.importexport,
org.eclipse.rse.importexport org.eclipse.rse.internal.importexport.files
Require-Bundle: org.eclipse.core.runtime, Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources, org.eclipse.core.resources,
org.eclipse.ui, org.eclipse.ui,

View file

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

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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. * Interface containing contstants required for import and export.

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.resources.IResource;
import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.Assert;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin; import org.eclipse.ui.plugin.AbstractUIPlugin;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.core.runtime.IStatus;
import org.eclipse.jface.dialogs.ErrorDialog; import org.eclipse.jface.dialogs.ErrorDialog;

View file

@ -8,12 +8,12 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * IBM Corporation - initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.files.importexport; package org.eclipse.rse.internal.importexport;
import org.eclipse.osgi.util.NLS; import org.eclipse.osgi.util.NLS;
public class RemoteImportExportResources extends 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_TITLE;
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_MESSAGE; public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_MESSAGE;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE; public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE;

View file

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

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.IContainer;
import org.eclipse.core.resources.IFile; 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.action.Action;
import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.rse.core.SystemBasePlugin; 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. * Utility class for import and export. A singleton class.

View file

@ -8,12 +8,12 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * IBM Corporation - initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.importexport; package org.eclipse.rse.internal.importexport;
import org.eclipse.osgi.util.NLS; import org.eclipse.osgi.util.NLS;
public class SystemImportExportResources extends 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_MESSAGE;
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_TITLE; public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_TITLE;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE; public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * IBM Corporation - initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.files.importexport.files; package org.eclipse.rse.internal.importexport.files;
public class Debug { public class Debug {
//execution time switches //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. * 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. * 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. * Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.CoreException;
import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.IStatus;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.CoreException;
import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.IStatus;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.CoreException;
import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.IStatus;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.CoreException;
import org.eclipse.core.runtime.IStatus; 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. * 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. * 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.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection; 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.RSEUIPlugin;
import org.eclipse.rse.ui.wizards.AbstractSystemWizard; import org.eclipse.rse.ui.wizards.AbstractSystemWizard;
import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IEditorPart;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.io.File;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
@ -30,10 +30,10 @@ import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.window.Window; import org.eclipse.jface.window.Window;
import org.eclipse.rse.core.SystemBasePlugin; import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost; 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.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.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile; import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile;
import org.eclipse.rse.ui.ISystemMessages; 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. * Copyright (c) 2000, 2007 IBM Corporation and others.

View file

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

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.InputStream;
import java.io.OutputStream; import java.io.OutputStream;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.BufferedInputStream;
import java.io.IOException; 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 { public void read(RemoteFileExportData exportData) throws CoreException {
try { 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 { public void close() throws CoreException {
if (fInputStream != null) { 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() { public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$ return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.BufferedOutputStream;
import java.io.IOException; 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 { public void write(RemoteFileExportData exportData) throws CoreException {
try { 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 { public void close() throws CoreException {
if (fOutputStream != null) { 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() { public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$ return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.action.IAction;
import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.jface.wizard.WizardDialog;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
@ -32,9 +32,9 @@ import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.operation.ModalContext; import org.eclipse.jface.operation.ModalContext;
import org.eclipse.rse.core.SystemBasePlugin; import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost; 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.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.RemoteFileIOException;
import org.eclipse.rse.services.files.RemoteFileSecurityException; import org.eclipse.rse.services.files.RemoteFileSecurityException;
import org.eclipse.rse.ui.ISystemMessages; import org.eclipse.rse.ui.ISystemMessages;

View file

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

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.InputStream;
import java.io.OutputStream; import java.io.OutputStream;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.BufferedInputStream;
import java.io.IOException; 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 { public void read(RemoteFileImportData importData) throws CoreException {
try { 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 { public void close() throws CoreException {
if (fInputStream != null) { 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() { public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$ return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.BufferedOutputStream;
import java.io.IOException; 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 { public void write(RemoteFileImportData importData) throws CoreException {
try { 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 { public void close() throws CoreException {
if (fOutputStream != null) { 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() { public IStatus getStatus() {
return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$ return new Status(IStatus.OK, RSEUIPlugin.getDefault().getSymbolicName(), 0, "", null); //$NON-NLS-1$

View file

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

View file

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

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.action.IAction;
import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.jface.wizard.WizardDialog;

View file

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

View file

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

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * IBM Corporation - initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.files.importexport.files; package org.eclipse.rse.internal.importexport.files;
import java.text.MessageFormat; 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.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.rse.core.SystemBasePlugin; 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.Display;
import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.dialogs.IOverwriteQuery; 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. * 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.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection; 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.RSEUIPlugin;
import org.eclipse.rse.ui.wizards.AbstractSystemWizard; import org.eclipse.rse.ui.wizards.AbstractSystemWizard;
import org.eclipse.ui.IImportWizard; import org.eclipse.ui.IImportWizard;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.io.File;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
@ -37,10 +37,10 @@ import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jface.window.Window; import org.eclipse.jface.window.Window;
import org.eclipse.rse.core.SystemBasePlugin; import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost; 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.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.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile; import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile;
import org.eclipse.rse.ui.ISystemMessages; import org.eclipse.rse.ui.ISystemMessages;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.SWT;
import org.eclipse.swt.dnd.DropTargetAdapter; import org.eclipse.swt.dnd.DropTargetAdapter;

View file

@ -8,7 +8,7 @@
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * 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.DropTargetAdapter;
import org.eclipse.swt.dnd.DropTargetEvent; 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. * Copyright (c) 2000, 2007 IBM Corporation and others.

View file

@ -9,11 +9,11 @@
* IBM Corporation - initial API and implementation * IBM Corporation - initial API and implementation
* Martin Oberhuber (Wind River) - [180562][api] dont implement IRemoteImportExportConstants * 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.SystemBasePlugin;
import org.eclipse.rse.core.model.IHost; 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.SystemMessage;
import org.eclipse.rse.services.clientserver.messages.SystemMessageException; import org.eclipse.rse.services.clientserver.messages.SystemMessageException;
import org.eclipse.rse.subsystems.files.core.model.RemoteFileUtility; 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; import org.eclipse.osgi.util.NLS;
public class UserActionsResources extends 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 // Property sheet values: Categories in Team view
public static String RESID_PROPERTY_TEAM_USERACTION_TYPE_VALUE; public static String RESID_PROPERTY_TEAM_USERACTION_TYPE_VALUE;
public static String RESID_PROPERTY_TEAM_COMPILETYPE_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; import org.eclipse.osgi.util.NLS;
public class SystemUDAResources extends 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... // WORK WITH USER DEFINED ACTIONS DIALOG...
public static String RESID_WORKWITH_UDAS_TITLE; public static String RESID_WORKWITH_UDAS_TITLE;
public static String RESID_WORKWITH_UDAS_ACTION_LABEL; public static String RESID_WORKWITH_UDAS_ACTION_LABEL;