1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00
cdt/rse/examples/org.eclipse.rse.examples.daytime/plugin.xml
2006-10-25 13:16:53 +00:00

56 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 Daytime subsystems -->
<extension point="org.eclipse.rse.core.systemTypes">
<systemType id="org.eclipse.rse.examples.daytime.systemtype"
name="Daytime"
description="%DaytimeSystemDescription"
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 -->
<!-- Disabled to avoid hard dependency to the FTP plugin
<extension
point="org.eclipse.rse.ui.subsystemConfigurations">
<configuration
systemTypes="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="%providerName"
priority="100"
id="ftp.files">
</configuration>
</extension>
-->
<!-- Instantiate the Daytime subsystem from our own plugin -->
<extension
point="org.eclipse.rse.ui.subsystemConfigurations">
<configuration
systemTypes="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="%providerName"
priority="40000"
id="daytime.tcp">
</configuration>
</extension>
</plugin>