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
57
votes
11 answers

Eclipse highlighting the same occurrence of the word

In Notepad++, it has a very nice feature that if I select a word, it will highlight all the same words throughout the text. I can also set the hot-keys to highlight up to five different words with different styles (See the effect below) . Is…
Ken Chan
  • 84,777
  • 26
  • 143
  • 172
57
votes
2 answers

How to exclude .svn directories from search in Eclipse?

Possible Duplicate: How can I make Eclipse file search not include svn directories? I would like to perform a search but exclude all .svn directories from the search. How could I do that? By the way, I have the Subversive plugin installed in…
Richard Knop
  • 81,041
  • 149
  • 392
  • 552
57
votes
4 answers

Checkstyle Eclipse plugin doesn't work

I'm using eclipse checkstyle plugin with Juno Eclipse distribution. Anytime the code is checked for checkstyle error I get the following error: cannot initialize module TreeWalker - Unable to instantiate DoubleCheckedLocking Does anybody know how…
Alex Objelean
  • 3,893
  • 2
  • 27
  • 36
55
votes
12 answers

An error occurred while collecting items to be installed (Access is denied)

I'm getting the error given below when I try to install the upgrade from Eclipse and it goes like half way and then throw the error. An error occurred while collecting items to be installed session context was:(profile=epp.package.java,…
Nick Kahn
  • 19,652
  • 91
  • 275
  • 406
55
votes
3 answers

Eclipse plugin for code coverage

I search a code coverage plugin for eclipse. My question is simple: Which plugin do you use with eclipse for code coverage and why ?
Kiva
  • 9,193
  • 17
  • 62
  • 94
52
votes
2 answers

How to use IntelliJ IDEA for Eclipse plugin development?

I have to develop a plugin for Eclipse but I prefer IntelliJ IDEA as IDE. Is it possible to configure IDEA for Eclipse plugin development?
Taras Hupalo
  • 1,337
  • 2
  • 16
  • 29
52
votes
1 answer

Error in Preview of Custom Eclipse refactoring

I am implementing an new eclipse refactoring. This will enable developers to Pull-up the preconditions statements from a child method to the parent method. This all works perfectly when I select "Finish" in the refactoring wizard, but when I…
iain
  • 10,798
  • 3
  • 37
  • 41
52
votes
2 answers

What is the difference between call hierarchy and find references eclipse?

I got confused when using this two commands in eclipse Ctrl+Shift+G and Ctrl+Alt+H both are returning same results . Scenario: Want to find where the method "findUsage" has been called. Sample Class Call Hierarchy Output (Ctrl+Alt+H) . Find…
kannanrbk
  • 6,964
  • 13
  • 53
  • 94
52
votes
6 answers

How to see my Eclipse version?

How do I find out which version of Eclipse is currently installed on my system?
vin-zhao
  • 703
  • 1
  • 5
  • 4
51
votes
1 answer

Generate interface from solid class file in Eclipse

Is there any plugin in Eclipse that auto generates interface based on solid class/impl concrete class? Currently I hand code interfaces.
cometta
  • 35,071
  • 77
  • 215
  • 324
49
votes
1 answer

EGit and Eclipse modifies .gitignore file but it should not

I'm using Eclipse and EGit, but Eclipse modifies my .gitignore file without me asking to do so. As soon as I open Eclipse the .gitignore file is modified. I've added some folders to .gitignore (through EGit) but removed them after, but Eclipse keeps…
Jeff
  • 979
  • 3
  • 10
  • 18
48
votes
4 answers

Is there a way to upgrade eclipse and keep all the installed plugins?

I found it tedious to reinstall all the plugin every time upgrade the eclipse.
user910317
  • 481
  • 1
  • 4
  • 3
46
votes
3 answers

Generate a keystore for an Android app in the Export Android Application wizard?

I'm trying to export a signed Android application in Eclipse. I think I'm going in the right direction: Right click on project > Android Tools > Export Signed Application Package The Export Android Application wizard appears. Select the project I…
Sophie
  • 463
  • 1
  • 4
  • 4
45
votes
3 answers

Git-svn and Eclipse?

Is there a plugin for Eclipse for git-svn? I'm looking for a way to handle the SVN repo with Git (for fast branch switching etc.)
Konrad Garus
  • 53,145
  • 43
  • 157
  • 230
45
votes
11 answers

Why do I keep getting 'SVN: Working Copy XXXX locked; try performing 'cleanup'?

If you have worked with SVN tools in Eclipse (Subversion, subversive) before, then you are likely familiar with the 'working copy 'XXX' locked..." error. I found a very useful post with a workaround for this problem at: Working copy XXX locked and…
jbranchaud
  • 5,909
  • 9
  • 45
  • 70