mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 23:55:26 +02:00
54 lines
1.9 KiB
XML
54 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (c) 2006 Wind River Systems, Inc.
|
|
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
|
|
|
|
Contributors:
|
|
Martin Oberhuber (Wind River) - initial API and implementation
|
|
-->
|
|
<?eclipse version="3.1"?>
|
|
<plugin>
|
|
<!-- Register a System that will only show FTP and Daytime subsystems -->
|
|
<extension point="org.eclipse.rse.core.systemTypes">
|
|
<systemType id="org.eclipse.rse.examples.daytime.systemtype.ftp"
|
|
name="FTP-Daytime"
|
|
description="%FTPDaytimeSystemDescription"
|
|
icon="icons/full/obj16/daytime_obj.gif"
|
|
iconLive="icons/full/obj16/daytimelive_obj.gif"/>
|
|
</extension>
|
|
<!-- Instantiate the FTP subsystem by referencing it from the external implementation -->
|
|
<extension
|
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
|
<configuration
|
|
systemTypes="FTP-Daytime"
|
|
name="%Files"
|
|
description="%FilesDescription"
|
|
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
|
icon="icons/full/obj16/systemfiles_obj.gif"
|
|
category="files"
|
|
class="org.eclipse.rse.subsystems.files.ftp.FTPFileSubSystemConfiguration"
|
|
vendor="Eclipse.org"
|
|
priority="100"
|
|
id="ftp.files">
|
|
</configuration>
|
|
</extension>
|
|
<!-- Instantiate the Daytime subsystem from our own plugin -->
|
|
<extension
|
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
|
<configuration
|
|
systemTypes="FTP-Daytime;Unix"
|
|
name="%DaytimeSubsystemName"
|
|
description="%DaytimeDescription"
|
|
iconlive="icons/full/obj16/daytimelive_obj.gif"
|
|
icon="icons/full/obj16/daytime_obj.gif"
|
|
category="daytime"
|
|
class="org.eclipse.rse.examples.daytime.subsystems.DaytimeSubSystemConfiguration"
|
|
vendor="Wind River Systems"
|
|
priority="40000"
|
|
id="daytime.tcp">
|
|
</configuration>
|
|
</extension>
|
|
</plugin>
|