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
2 answers

Compile Groovy files in Eclipse

My java web project includes some Groovy code. But eclipse is not recognizing Groovy files and not generating any classes out of it. I have installed Groovy plugin in Eclipse. Installed Groovy in my windows machine and setup GROOVY_HOME and include…
Himanshu Yadav
  • 13,315
  • 46
  • 162
  • 291
3
votes
1 answer

Add external jars to Eclipse plugin classpath

In the manifest file for an eclipse plugin its possible to add jar files and folders to the classpath (on the Runtime tab). In the root of my plugin I have a folder lib containing a-1.0.1.jar, b-1.0.0-SNAPSHOT.jar. But only when I select each jar…
u123
  • 15,603
  • 58
  • 186
  • 303
3
votes
1 answer

Eclipse Plugin : how to modify a file source programatically?

I'm trying to build my first Eclipse Plugin (under Indigo). I created a Popup Menu, and I manage to get the selected File path. My aim is to add a member and a method via the plugin, inside the class definition. Should I parse the file myself or…
XGouchet
  • 10,002
  • 10
  • 48
  • 83
3
votes
1 answer

Using the sonar plugin with eclipse

I'm trying to use Sonar to analyse my projects in Eclipse. I am currently using Maven in eclipse. I installed the Sonar Eclipse plugin as described in this link. But when I try and associate my project with Sonar, I get an error saying: project …
user1218900
  • 97
  • 1
  • 2
  • 7
3
votes
1 answer

Adding Web App to WebSphere Liberty Profile via Eclipse plugin tools

I'm attempting to get an existing web application working with 'WebSphere Application Server Liberty Profile v8.5 Beta' using the 'IBM WebSphere Liberty Profile Tools for Eclipse'. I have installed the developer tools for Eclipse as well as the…
Thomas Buckley
  • 5,836
  • 19
  • 62
  • 110
3
votes
2 answers

RCP communication

I wrote two independent RCP application, let's call them A and B. Is it possible to call and run B from A without setting any dipendences?
Silvio
  • 123
  • 1
  • 11
3
votes
2 answers

how can I get the values of ComboFieldEditor?

I created one ComboFieldEditor in my code and I want to get the value before storing it in the Preference store. In the case of StringFieldEditor there is one method like getStringValue(). But in the case of ComboFieldEditor, there is no such…
Anu
  • 405
  • 1
  • 4
  • 16
3
votes
2 answers

Find Most Frequently-used Java Methods in Eclipse Workspace

Is there an Eclipse plug-in, or some other tool or technique that would search an entire Java project (and/or the entire workspace) and reveal (in list/sortable format) the frequency-of-invocation of all public methods in the project? That is "what…
PattMauler
  • 400
  • 4
  • 22
3
votes
1 answer

Adding a delete icon column to an Eclipse table

I've currently implemented a Table with a TableEditor in my Eclipse plugin to support cell-level editing with keyboard support (to traverse cells with the editor). I also need a way to delete rows, and I didn't want to go with the practice of adding…
seand
  • 468
  • 6
  • 23
3
votes
2 answers

Android + Google App Engine connection

I'm working on connecting an android app in Java with google app engine. This is my first time doing it. I watched and did the same thing that it was done in this video: http://www.youtube.com/watch?v=M7SxNNC429U I have been working and I'm getting…
KinGPinG
  • 171
  • 3
  • 11
3
votes
2 answers

How to enable Save and SaveAs actions for an editor which extends FormEditor class

I have an editor class which extends FormEditor class. In order to achieve save and save As functionality for this editor, will it be enough to override: doSave(IProgressMonitor monitor) doSaveAs() isSaveAsAllowed() these methods alone? Or…
user1168608
  • 598
  • 2
  • 10
  • 27
3
votes
2 answers

How to migrate my eclipse to another computer?

How can I migrate my eclipse and plugins from my computer to my laptop? My eclipse has an ADT and Android plugins and I dunno if it works to copy only the eclipse folder.
spicykimchi
  • 1,151
  • 5
  • 22
  • 41
3
votes
2 answers

Eclipse hangs after installing egit

I am using Eclipse Indigo. Today I tried to install egit plugin using link "http://download.eclipse.org/releases/indigo". While installing the egit, my proxy got squished and the install was stuck. I then logged in from a different proxy. The thing…
prathmesh.kallurkar
  • 5,468
  • 8
  • 39
  • 50
3
votes
1 answer

PL/SQL plugin for Eclipse

I've been looking for git support for one of the PL/SQL ides that I already use. Maybe I should be looking for a PL/SQL plugin for Eclipse since excellent support for git is already there. Can anyone suggest a free plugin for Eclipse that's as good…
Sandah Aung
  • 6,156
  • 15
  • 56
  • 98
3
votes
1 answer

Creating an Eclipse debug view

I am working on a custom debug view in an Eclipse plugin. In this view, I need to know when we are in debug mode and if a breakpoint is currently hit. At the moment I have this working when my view is active by listening for the various debug events…
Alan Spark
  • 8,152
  • 8
  • 56
  • 91