1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 17:45:24 +02:00
cdt/rse/examples/org.eclipse.rse.examples.daytime/plugin.xml

61 lines
2.3 KiB
XML
Raw Normal View History

2006-05-24 16:38:27 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2006, 2007 Wind River Systems, Inc. and others.
2006-05-24 16:38:27 +00:00
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
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
Martin Oberhuber (Wind River) - [186523] Move subsystemConfigurations from UI to core
2006-05-24 16:38:27 +00:00
-->
<?eclipse version="3.1"?>
<plugin>
<!-- Register a System that will only show Daytime subsystems -->
2006-05-24 16:38:27 +00:00
<extension point="org.eclipse.rse.core.systemTypes">
<systemType id="org.eclipse.rse.examples.daytime.systemtype"
label="%DaytimeSystemLabel"
name="Daytime"
description="%DaytimeSystemDescription"
icon="icons/full/obj16/daytime_obj.gif"
iconLive="icons/full/obj16/daytimelive_obj.gif"/>
2006-05-24 16:38:27 +00:00
</extension>
<!-- Instantiate the FTP subsystem by referencing it from the external implementation -->
<!-- Disabled to avoid hard dependency to the FTP plugin
2006-05-24 16:38:27 +00:00
<extension
point="org.eclipse.rse.core.subsystemConfigurations">
2006-05-24 16:38:27 +00:00
<configuration
systemTypeIds="org.eclipse.rse.examples.daytime.systemtype"
2006-05-24 16:38:27 +00:00
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"
2006-05-24 16:38:27 +00:00
id="ftp.files">
</configuration>
</extension>
-->
2006-05-24 16:38:27 +00:00
<!-- Instantiate the Daytime subsystem from our own plugin -->
<extension
point="org.eclipse.rse.core.subsystemConfigurations">
2006-05-24 16:38:27 +00:00
<configuration
category="daytime"
class="org.eclipse.rse.examples.daytime.subsystems.DaytimeSubSystemConfiguration"
description="%DaytimeDescription"
icon="icons/full/obj16/daytime_obj.gif"
iconlive="icons/full/obj16/daytimelive_obj.gif"
id="daytime.tcp"
name="%DaytimeSubsystemName"
priority="40000"
serviceType="_daytime._tcp"
systemTypeIds="org.eclipse.rse.examples.daytime.systemtype;org.eclipse.rse.systemtype.unix"
vendor="%providerName">
2006-05-24 16:38:27 +00:00
</configuration>
</extension>
</plugin>