ADT Eclipse Plugin Extension (Android Development Tools)

I would like to develop an extensible plugin for ADT-Plugin for Eclipse. Is there information on available extension points? Or is there a general way, how can I get information about the available extension points of a particular plugin?

+3
source share
1 answer

I did not check this with adt, but in general you can find information about access points on the Extensions tab in the MANIFEST.MF file (in your plugin). If your plugin is dependent on the adt plugin, it should filter the list for you.

Also, extension points are usually defined in the / * scheme. exsd

: Eclipse RCP http://www.eclipse.org/downloads/packages/eclipse-rcp-and-rap-developers/heliossr2

0

All Articles