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

Android/Emma coverage.ec output fails to import into EclEmma

I have successfully managed to get ant to build using the emma param and thus instrument my application. All the tests run correctly and the coverage.em and coverage.ec files get created. It even creates the coverage.html file which is all…
Stewert
  • 101
  • 1
  • 3
3
votes
1 answer

Trigger Eclipse's code formatter programmatically from a new file wizard

I'm writing an Eclipse plugin with a wizard (org.eclipse.jface.wizard.Wizard) which creates a new file with a basic code template. To simplify the "piecing together" of the file contents, I plan to stuff everything into one long string, inject it…
John J. Camilleri
  • 4,171
  • 5
  • 31
  • 41
3
votes
4 answers

Tests failing in Maven install from command line but passing from Eclipse UI

I am using Maven in my Java project and the IDE is Eclipse. I have few test cases in my project, and when I am doing a Maven Install from eclipse then my test cases are passing, but when I am doing the Maven install from the command line, then all…
Arry
  • 1,630
  • 9
  • 27
  • 46
3
votes
2 answers

How to get path of current selected file in Eclipse plugin development

I am opening an Editor with Open with menu in Eclipse.But i am not able to get path of current selected file.Sometimes it gives proper path but sometimes throws null pointer Exception. I am writing following code to get selected file…
Eshika
  • 321
  • 1
  • 8
  • 20
3
votes
3 answers

Hardware requirements for eclipse (indigo) on windows 7 32 bit

How much ram and processing power are required to run eclipse smoothly? I plan to build plugins by extending EMF, GEF.
Waqas Rana
  • 71
  • 1
  • 1
  • 7
3
votes
2 answers

Accessing a 32-bit COM DLL from a 64-bit Java Application (Registry Entry Not Found)

I'm trying to call CoCreateInstance(...) via a 64-bit Java library: org.eclipse.swt.internal.ole.win32.COM. The DLL I'm trying to hook into is a DLL for Visual SourceSafe. The point of the project is to port a VSS plugin…
kwikness
  • 1,425
  • 4
  • 21
  • 37
3
votes
4 answers

How to restrict Eclipse-RCP application to a single instance?

I would like to restrict my Eclipse-RCP application to a single instance. By this, I mean that once a user opens the application for the first time, it listens on a port and for the second access it should open the previous instance instead of…
srk
  • 4,857
  • 12
  • 65
  • 109
3
votes
3 answers

Make Eclipse "run configuration" show up in context menu of specified file type

I have a simple Eclipse run configuration launching a Perl script to process an XML file. Nothing special, works alright. However, picking the run configuration is a bit awkward. My entry doesn't show up in the first level of the context menu. It…
Lumi
  • 14,775
  • 8
  • 59
  • 92
3
votes
1 answer

Does "including all environments" with the RCP SDK fully replace adding a Delta Pack to the target platform?

I'm building an Eclipse RCP application, and am in the process of setting up the target platform. In "Eclipse Rich Client Platform" 2nd edition it is noted that one should uncheck the "include required software" option when adding the RCP SDK to the…
s.d
  • 4,017
  • 5
  • 35
  • 65
3
votes
1 answer

Eclipse plugin development: How to inform view that content has changed?

I'm developing my first Eclipse plugin. For that I used an example that has a simple view. I added a IStructuredContentProvider to provide the view with content. The first time when it is loaded it works, but when I changed the content, the view…
anon
3
votes
1 answer

Why can't I see new features in my Eclipse update site?

In a nutshell: I've updated some features in my Eclipse update site, but the new versions are not showing, only the existing (installed) ones are. Background I have written a number of plugins (transformation extensions) in RSA to enable…
James Bassett
  • 9,458
  • 4
  • 35
  • 68
3
votes
2 answers

Remove GAE jars copied by GPE

I need only two app-engine related jars (appengine-api-1.0-sdk-1.6.0.jar and appengine-api-labs-1.6.0.jar to be precise) in my WEB-INF/lib but Google Plugin for Eclipse (GPE) copies a dozen jars like the ones used for JDO, cache etc which i really…
kdabir
  • 9,623
  • 3
  • 43
  • 45
3
votes
1 answer

Is it possible to integrate Glassfish support into Liferay IDE yet?

I am looking for a bit of Liferay/Glassfish assistance here. I am currently using a Liferay 6.0.6 portal running on Glassfish 3.0.1 and developing in Eclipse 3.7 (Indigo). I have downloaded the Liferay IDE for Eclipse as well. The trouble I am…
CatsAndCode
  • 377
  • 9
  • 27
3
votes
5 answers

Why the is flexbuilder plugin for eclipse so slow to open and compile?

I've got a decent computer. ( something with dual-core in the name and a lot of ram ). Sometime FlexBuilder prompt the "builder project" loading bar only when i open a simple mxml file. It's look like he does some difficult jobs... i don't ask for…
3
votes
1 answer

How to import VC++ project in eclipse?

I have a vc++ solution which contains few vc++ project. And each project also has make file, meaning we can build it using make command. Now I want to import this whole solution in eclipse. I am using wascana plugin in eclipse for c++. Reply soon…
Apoorva sahay
  • 1,900
  • 3
  • 28
  • 45