Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'rse/plugins/org.eclipse.rse.importexport/plugin.xml')
-rw-r--r--rse/plugins/org.eclipse.rse.importexport/plugin.xml129
1 files changed, 0 insertions, 129 deletions
diff --git a/rse/plugins/org.eclipse.rse.importexport/plugin.xml b/rse/plugins/org.eclipse.rse.importexport/plugin.xml
deleted file mode 100644
index 93ffc78cd..000000000
--- a/rse/plugins/org.eclipse.rse.importexport/plugin.xml
+++ /dev/null
@@ -1,129 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin>
-
-<!-- ========================================================================= -->
-<!-- Remote File System import and export wizards. -->
-<!-- ========================================================================= -->
- <extension point="org.eclipse.ui.importWizards">
- <wizard
- name="%RemoteFileSystemImportWizard.label"
- icon="icons/full/etool16/file_import.gif"
- class="org.eclipse.rse.internal.importexport.files.RemoteImportWizard"
- id="org.eclipse.rse.files.importexport.fileImportWizard">
- <description>
- %RemoteFileSystemImportWizard.description
- </description>
- <selection
- class="org.eclipse.core.resources.IResource">
- </selection>
- </wizard>
- </extension>
-
- <extension
- point="org.eclipse.ui.popupMenus">
- <objectContribution
- objectClass="org.eclipse.core.resources.IResource"
- nameFilter="*.rimpfd"
- id="org.eclipse.rse.files.importexport.runFileImport">
- <action
- label="%RemoteFileImportAction.label"
- tooltip="%RemoteFileImportAction.tooltip"
- class="org.eclipse.rse.internal.importexport.files.RemoteFileImportActionDelegate"
- menubarPath="additions"
- enablesFor="+"
- id="importRemoteFiles">
- </action>
- </objectContribution>
- <objectContribution
- objectClass="org.eclipse.core.resources.IResource"
- nameFilter="*.rimpfd"
- id="org.eclipse.rse.files.importexport.openFileImport">
- <action
- label="%OpenRemoteFileImport.label"
- tooltip="%OpenRemoteFileImport.tooltip"
- class="org.eclipse.rse.internal.importexport.files.RemoteFileOpenImportWizardActionDelegate"
- menubarPath="additions"
- enablesFor="1"
- id="openRemoteFileImport">
- </action>
- </objectContribution>
- </extension>
-
- <extension
- point="org.eclipse.ui.exportWizards">
- <wizard
- name="%RemoteFileSystemExportWizard.label"
- icon="icons/full/etool16/file_export.gif"
- class="org.eclipse.rse.internal.importexport.files.RemoteExportWizard"
- id="org.eclipse.rse.files.importexport.fileExportWizard">
- <description>
- %RemoteFileSystemExportWizard.description
- </description>
- <selection
- class="org.eclipse.core.resources.IResource">
- </selection>
- </wizard>
- </extension>
-
- <extension
- point="org.eclipse.ui.popupMenus">
- <objectContribution
- objectClass="org.eclipse.core.resources.IResource"
- nameFilter="*.rexpfd"
- id="org.eclipse.rse.files.importexport.runFileExport">
- <action
- label="%RemoteFileExportAction.label"
- tooltip="%RemoteFileExportAction.tooltip"
- class="org.eclipse.rse.internal.importexport.files.RemoteFileExportActionDelegate"
- menubarPath="additions"
- enablesFor="+"
- id="exportRemoteFiles">
- </action>
- </objectContribution>
- <objectContribution
- objectClass="org.eclipse.core.resources.IResource"
- nameFilter="*.rexpfd"
- id="org.eclipse.rse.files.importexport.openFileExport">
- <action
- label="%OpenRemoteFileExport.label"
- tooltip="%OpenRemoteFileExport.tooltip"
- class="org.eclipse.rse.internal.importexport.files.RemoteFileOpenExportWizardActionDelegate"
- menubarPath="additions"
- enablesFor="1"
- id="openRemoteFileExport">
- </action>
- </objectContribution>
- </extension>
-
- <extension
- point="org.eclipse.ui.popupMenus">
- <objectContribution
- objectClass="org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile"
- id="org.eclipse.rse.files.importexport.projectImportExport">
- <filter
- name="isDirectory"
- value="true">
- </filter>
-
- <action
- label="%ImportToProject.label"
- tooltip="%ImportToProject.tooltip"
- class="org.eclipse.rse.internal.importexport.files.RemoteFileImportToProjectActionDelegate"
- menubarPath="group.importexport"
- enablesFor="1"
- id="importToProject">
- </action>
-
- <action
- label="%ExportFromProject.label"
- tooltip="%ExportFromProject.tooltip"
- class="org.eclipse.rse.internal.importexport.files.RemoteFileExportFromProjectActionDelegate"
- menubarPath="group.importexport"
- enablesFor="1"
- id="exportFromProject">
- </action>
- </objectContribution>
- </extension>
-
-</plugin>

Back to the top