Remote Resources

Identifier:
org.eclipse.ptp.remote.core.remoteResources

Description:
This extension point allows remote implementations to provide additional operations on a resource. The extension associates a project nature with the resource extension. Resources contained within a particular project can be adapted to obtain the additional operations.

Configuration Markup:

<!ELEMENT extension (remoteResource)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT remoteResource EMPTY>

<!ATTLIST remoteResource

class  CDATA #REQUIRED

nature CDATA #REQUIRED>


Examples:

   <extension point="org.eclipse.ptp.remote.core.remoteResource"> 
      <remoteResource class="MyRemoteResourceClass" nature="MyProjectNature"/> 
   </extension> 

API Information:
The value of the class attribute must implement the interface org.eclipse.ptp.remote.core.IRemoteResource

Supplied Implementation:
The remote package itself does not have any predefined remote resources.


Copyright (c) 2013 IBM Corporation and others. 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