Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

Features

A feature is a way of grouping and describing different functionality that makes up a product. Grouping plug-ins into features allows the product to be installed and updated using the Eclipse update server and related support.

Features do not contain any code.  They merely describe a set of plug-ins that provide the function for the feature and information about how to update it. Features are packaged in a featurearchive file and described using a featuremanifest file, feature.xml. The following is the first part of the manifest for the platform feature:

<?xml version="1.0" encoding="UTF-8"?>
<feature
      id="org.eclipse.platform"
      label="%featureName"
      version="3.3.0"
      provider-name="%providerName"
      image="eclipse_update_120.jpg">

   <description>
      %description
   </description>

   <license url="%licenseURL">
      %license
   </license>

   <url>
      <update label="%updateSiteName" url="https://update.eclipse.org/updates/3.3"/>
      <discovery label="%updateSiteName" url="https://update.eclipse.org/updates/3.3/">
   </url>

   <plugin
         id="org.apache.ant"
         download-size="0"
         install-size="0"
         version="1.6.1"/>

   <plugin
         id="com.jcraft.jsch"
         download-size="0"
         install-size="0"
         version="0.1.31"
         unpack="false"/>
	...
</feature>

 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire