Questions tagged [eclipse-plugin]

Eclipse is an OSGi extensible platform for tool integration. The extensions to Eclipse are Java plug-ins. Use this tag to ask about developing Eclipse plug-ins. Note that asking for plug-in recommendations is off-topic.

Eclipse isn't a single monolithic program, but rather a small kernel containing a plug-in loader surrounded by a multitude of Java plug-ins. This small kernel is an implementation of the OSGi R4 specification and provides an environment in which plug-ins execute.

Each plug-in contributes to the whole in a structured manner, may rely on services provided by another plug-in, and each may in turn provide services on which yet other plug-ins may rely.

Plug-ins allow the extension of Eclipse functionality in various ways:

  • Providing additional UI elements,
  • allowing working with new technologies,
  • enhancing an existing plugin functionality, and much more.

The Eclipse source code is readily available and can be integrated with Eclipse to make it easy to debug plug-ins.

Documentation

11636 questions
3
votes
1 answer

Eclipse plugin developed under Helios doesn't show in Juno

I developed a plug-in for Eclipse that has been working fine in Helios. I installed Juno, put the plug-in jar in the dropins folder, and started Eclipse, but the plug in does not work in Juno (my extra menu item does not show-up). When I view…
Dale
  • 5,520
  • 4
  • 43
  • 79
3
votes
1 answer

eclipse mercurial plugin installation error

I'm trying to install the eclipse mercurial plugin (with eclipse indigo), but I get an error during installation. I went to help->install new software, then I wrote 'http://cbes.javaforge.com/update - http://cbes.javaforge.com/update' and then…
bob
  • 1,993
  • 3
  • 17
  • 20
3
votes
4 answers

Eclipse plugin to know performance of a Java program

Preferably Eclipse Plugin Is there any Eclipse plugin which can help me in looking at performance of a Java program? or (in case Eclipse plugin is not available) If there isn't any Eclipse plugin, is there any other way? Update What about…
AabinGunz
  • 12,109
  • 54
  • 146
  • 218
3
votes
3 answers

Eclipse doesn't display Perl module while debugging (with EPIC)

I am using Eclipse GALILEO running on Linux Ubuntu with EPIC plugin to Run/Debug Perl code and I'm experiencing some problems while debugging. Usually, when I do step-by-step debugging and encounter a line where a certain Perl module is used, I…
Eugene S
  • 6,709
  • 8
  • 57
  • 91
3
votes
0 answers

cannot install blackberry webworks plugin in eclipse

using http://www.blackberry.com/go/eclipseUpdate/3.6/java ,I installed Blackberry java plugin(core),Blackberry java SDK but for using phonegap, i used this as reference…
saum22
  • 884
  • 12
  • 28
3
votes
2 answers

how to find plugin id in eclipse rcp application

is there a API method to get current plugin's id? note : my rcp application contains more than one plugin project, some of them don't contains a Plugin class(the Activator class) so I can't get plugin id use such…
CaiNiaoCoder
  • 3,269
  • 9
  • 52
  • 82
3
votes
2 answers

Execute command/handler of an existing plugin from a different plugin

I have an RCP application with an existing command and handler to switch perspective programmatically. And I also have and new plugin consumed by the existing RCP application. I want this new plugin to execute the command/handler of my RCP…
Louie
  • 175
  • 1
  • 10
3
votes
1 answer

How can I install the MercurialEclipse Plugin?

I'm new to java and installing plugins. I have found the link to the plugin I'd like to install (it's called MercurialEclipse) but what a mess is that, it seems too complicated. I need simple guide. Could you please help?
Popokoko
  • 6,413
  • 16
  • 47
  • 58
3
votes
2 answers

Are there any Eclipse IDE+GUI plugins for Openlaszlo?

I intend to customize Openmeetings and am wondering if there is a GUI editor available for Openlaszlo. There was apparently a plugin called IDE4Lazlo, mentioned both at IBM and Eclipse.org, but both links are dead. If the plugin has been definitely…
James P.
  • 19,313
  • 27
  • 97
  • 155
3
votes
2 answers

Adding files to a mercurial controlled repository

I've recently started using mercurial (it's actually my first experience with version control) but having a very hard time wrapping my head around the concept. But thats another issue... What I needed help with was adding files I have on my computer…
Zaki Aziz
  • 3,592
  • 11
  • 43
  • 61
3
votes
1 answer

How to create a jar file for the eclipse plugin project that should be able to download and run without eclipse software?

I m doing an eclipse plugin project to create an IDE. I need to create a jar file for the plugin project in which i have four plugin packages which was created by me. Now I need these to be created as a single jar file and the user should be able to…
karthigayan
  • 137
  • 4
  • 10
3
votes
1 answer

How do I fix eclipse warning: "It is recommended for plug-in 'XXX' to run from a JAR, specify 'unpack="false"' attribute"

The plug-in really needs to be unpacked, yes I know it shouldn't care, but it does. I just want to make this warning go away, how do I do that?
Jeremy
  • 2,321
  • 3
  • 21
  • 24
3
votes
1 answer

App Engine upload issues.

I'm no longer able to upload code to my app engine app. The following are the symptoms that I'm experiencing: Code compiles and files are uploaded. Update fails during "Verifying availability" Here's the specific stuff from the…
Bob Dillon
  • 341
  • 1
  • 7
3
votes
2 answers

calling ant task in my plugin and redirect the output to the console

In my eclipse plugin, I am trying to execute an Ant task and to redirect the output to the eclipse console Here is my code: AntRunner runner = new AntRunner(); runner.addBuildLogger("myplugin.AntLogger"); String projectPath =…
Chen
  • 3,760
  • 1
  • 17
  • 21
3
votes
1 answer

Eclipse - Print report from app with Google Cloud Print

I am developing an android application in eclipse to print a report via Google Cloud Print. This tutorial from Google has me on the right track. I have already installed itext to generate the Report.pdf My problem is in the "print" element of my…