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
4
votes
1 answer

my eclipse plug-in creates endless workspace building loops, probably job related

I have created a plug-in to hook into the save action and create a minified javascript file of an edited javascript file. You can see the full code in this question: eclipse plugin does not work after update to juno (eclipse 4) Problem is that since…
steros
  • 1,794
  • 2
  • 26
  • 60
4
votes
1 answer

How project/wizard is associated with perspective?

After we create a new project in eclipse, a dialog will be showed as following picture if our current perspective is not associated with this kind of project. So how do Eclipse make this programmatically? I think it depends on the project nature…
Sam Su
  • 6,532
  • 8
  • 39
  • 80
4
votes
3 answers

Eclipse: which plugins for HTML & Javascript?

Which plugins do you use for editing (with syntax highlighting) HTML & Javascript in Eclipse 3.5?
jldupont
  • 93,734
  • 56
  • 203
  • 318
4
votes
1 answer

Eclipse plugin:TextSelection cannot resoleve

I am trying to develop my first plug-in. The plug-in should manipulate the content of the selected text in the active text editor. I started with the “hello world” example from the “Cheat sheet” which worked perfect. When tried to modify I found…
Ronen
  • 807
  • 1
  • 13
  • 33
4
votes
1 answer

Which eclipse listener should I use to add annotations to a text editor

I am an eclipse newbie. I have a long term goal which is to add my own annotations to the java editor: a bit like FindBugs. I want my own static code analysers, and to be able to add markers/annotations to resources. So I have read a lot of…
Stave Escura
  • 2,058
  • 1
  • 19
  • 24
4
votes
1 answer

Eclipse tool that shows which lines of code were hit throughout an execution?

I have a massive program, and I want to execute a use case (will require user input), which will not be a JUnit test, kill the program, and see which lines of code were hit. This simple use case will go through thousands of lines of code, so adding…
Sam
  • 51
  • 1
  • 4
4
votes
1 answer

trying to do UML diagramming with papyrus on eclipse but no diagrams are shown...what could be the issue?

I have eclipse 4.2 and papyrus 0.9. I have started modelling a project by creating class Diagrams but the issue is that papyrus does not draw the diagrams on the editor pane. I can create and add attributes and operations from the model explorer and…
Obby
  • 1,353
  • 2
  • 13
  • 20
4
votes
1 answer

Where to find sencha touch JSB file?

I am trying to use spket plugin for code complete suggestions in eclipse using this tutorial : https://steve0hh.wordpress.com/2012/04/20/how-to-set-up-sencha-touch-code-assist-in-aptana/ The problem is that I cannot find jsb3 file in my downloaded…
4
votes
1 answer

EGit 2.3 new --no-ff option, how to use it?

In EGit 2.3 they've added the no fast-forward merge ability according to their release documents "Support git merge --no-ff as an EGit preference." http://wiki.eclipse.org/EGit/New_and_Noteworthy/2.3 Question I have is, where do you set this…
David
  • 58
  • 4
4
votes
3 answers

PMD - Eclipse plugin - Not testing against any rules

I'm using Eclipse Juno (Service Release 1) and installed the latest version of the PMD plugin from http://sourceforge.net/projects/pmd/files/pmd-eclipse/update-site/ I can configure the plugin and select which rules should be executed but…
fkerber
  • 1,032
  • 9
  • 24
4
votes
3 answers

how to solve this eclipse launch error?

I tried couple of answer to fix eclipse start-up problem. I tried eclipse.exe -clean didn't work. eclipse.exe -clean -data C:\prectice\java\ didn't work eclipse.exe -clean --lanuncher.ini elipse.ini didn't work. Here is the error:- An error has…
masiboo
  • 4,537
  • 9
  • 75
  • 136
4
votes
2 answers

Are there any Eclipse plugins to display a visual object graph in debug mode?

Is there any such tool for Eclipse to draw a visual graph for a given object as the root in debug mode? Something like Stan4J but more focused on objects and fields.
johnflan
  • 321
  • 4
  • 15
4
votes
1 answer

Unit testing Eclipse's Editor logic in plugins : existing mocks/frameworks?

I'm working on a plugin which editor augments on the existing JDT (Java) editor using aspects. Now, Eclipse text editors that derive from AbstractTextEditor are organized in clear components, following an MVC architecture. Those components are then…
Francois G
  • 11,957
  • 54
  • 59
4
votes
2 answers

GWT Deploying to Google has encountered a fault

Got an error I can't fix. Looks like a memory issue but the stack trace is kind of looping as if the is an infinite loop in the compilation? Running Eclipse Juno Working with Google App engine. I get an error when I try to deploy one app to GAE…
user1840829
  • 61
  • 1
  • 6
4
votes
2 answers

The repository directory generated with "Eclipse product export"

When I export the standalone headless eclipse RCP, I have two directories: eclipse and repository. What is the repository directory for? Can I just delete this directory? I see the plugins directory is in both eclipse and repository.
prosseek
  • 182,215
  • 215
  • 566
  • 871