mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-05 16:15:25 +02:00
79 lines
2.9 KiB
XML
79 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (c) 2006 IBM Corporation. All rights reserved.
|
|
This program and the accompanying materials are made available under the terms
|
|
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
|
available at http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
Initial Contributors:
|
|
The following IBM employees contributed to the Remote System Explorer
|
|
component that contains this file: David McKnight, Kushal Munir,
|
|
Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
|
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
|
|
|
Contributors:
|
|
{Name} (company) - description of contribution.
|
|
-->
|
|
<?eclipse version="3.0"?>
|
|
<plugin>
|
|
<extension
|
|
id="org.eclipse.rse.eclipse.filesystem"
|
|
point="org.eclipse.core.filesystem.filesystems">
|
|
<filesystem scheme="rse">
|
|
<run class="org.eclipse.rse.eclipse.filesystem.RSEFileSystem"/>
|
|
</filesystem>
|
|
</extension>
|
|
<extension
|
|
id="org.eclipse.rse.eclipse.filesystemSupport"
|
|
point="org.eclipse.ui.ide.filesystemSupport">
|
|
<filesystemContributor
|
|
scheme="rse"
|
|
class="org.eclipse.rse.eclipse.filesystem.RSEFileSystemContributor"
|
|
label="RSE">
|
|
</filesystemContributor>
|
|
</extension>
|
|
|
|
<!-- remote eclipse filesystem not properly supported yet-->
|
|
<!--
|
|
<extension
|
|
point="org.eclipse.ui.popupMenus">
|
|
<objectContribution
|
|
adaptable="false"
|
|
id="org.eclipse.rse.eclipse.filesystem.createproject.">
|
|
<visibility>
|
|
<objectClass name="org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile"/>
|
|
</visibility>
|
|
|
|
<action
|
|
label="Create Remote Project"
|
|
tooltip="%ImportToProject.tooltip"
|
|
class="org.eclipse.rse.eclipse.filesystem.ui.actions.CreateRemoteProjectActionDelegate"
|
|
menubarPath="group.importexport"
|
|
enablesFor="1"
|
|
id="importToProject">
|
|
</action>
|
|
</objectContribution>
|
|
</extension>
|
|
-->
|
|
|
|
<extension point="org.eclipse.ui.popupMenus">
|
|
<objectContribution
|
|
objectClass="org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile"
|
|
id="org.eclipse.rse.eclipse.filesystem.createproject.">
|
|
<visibility>
|
|
<objectState name="isdirectory" value="true"/>
|
|
</visibility>
|
|
<action
|
|
label="Create Remote Project"
|
|
tooltip="%ImportToProject.tooltip"
|
|
class="org.eclipse.rse.eclipse.filesystem.ui.actions.CreateRemoteProjectActionDelegate"
|
|
menubarPath="group.importexport"
|
|
enablesFor="1"
|
|
id="importToProject">
|
|
</action>
|
|
</objectContribution>
|
|
</extension>
|
|
|
|
|
|
<!-- -->
|
|
</plugin>
|