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

Eclipse's Android File Explorer not working

I've had a look around the web for an answer to this with no joy. In my Eclipse (Helios) in DDMS mode I can't use the file explorer tab for looking at files on my device. If I start up an emulator it work fine but for my device its blank. I'm using…
Tim
  • 5,767
  • 9
  • 45
  • 60
3
votes
1 answer

Remove the tests from an ECLEmma report

I think eclemma is a great tool for giving a rough estimate of my tests coverage, but in the reports, it also displays the coverage of the tests itself, which is annoying. Is there any easy way to disable this (and thus only show the program code…
billybob
  • 127
  • 5
3
votes
4 answers

How can I obtain the version number of a custom Eclipse feature at runtime?

I would like to display the version number of a custom Eclipse feature I am developing in the title bar of its perspective. Is there a way to obtain the version number from the runtime plugin and/or workbench?
munger
  • 73
  • 2
  • 6
3
votes
10 answers

What non-free tools are popular amongst Java developers

The vast majority of developers I interact with are using Eclipse (I prefer NetBeans) and will leverage many of the free plugins that are available. However, many of them are using few if any tools that require monetary payment. Have developers ever…
McGovernTheory
  • 6,556
  • 4
  • 41
  • 75
3
votes
1 answer

Using Eclipse to create and debug PHP code

I have xampp with wordpress inside it. I have also downloaded the eclipse plugin for PHP from http://download.eclipse.org/tools/pdt/updates/3.0/milestones/ .I want to create a project in eclipse (Indigo 3.7) and debug my PHP code. Is there a way to…
Adithya
  • 2,923
  • 5
  • 33
  • 47
3
votes
2 answers

Gwt: unable to find MyModule.gwt.xml

May be a duplicate of this, but I have not found an appropriate solution. I get this error: [ERROR] Unable to find 'main/java/com/blabla/MyModule.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for…
maks
  • 5,911
  • 17
  • 79
  • 123
3
votes
2 answers

Install previous version of GPE?

I want to roll back my Google Plugin for Eclipse to a previous version. How can I accomplish that?
Riley Lark
  • 20,660
  • 15
  • 80
  • 128
3
votes
1 answer

Eclipse PDE Logging

I want to send the exceptions of my plugin to the Error Log, but I don't want them to be shown in the Eclipse console. This is what I am doing. First, I implemented ILogListener. public class MyILogListener implements ILogListener { @Override …
Rafael Angarita
  • 777
  • 10
  • 27
3
votes
4 answers

Why is Commit Greyed-out in Eclipse's Egit

The commit button in EGit has mysteriously been greyed-out. It was working just fine a few days ago. Does anyone know how to fix this. I haven't found any clues on Google. I'd include a screenshot, but I don't have enough reputation points yet.
HappyCoder86
  • 2,267
  • 3
  • 25
  • 40
3
votes
1 answer

In Eclipse How to Enable and Disable Main Menu Items in Run time

During menu added into the main menu of eclipse which has sub-menus. I need these sub-menus to be enabled/disabled based on a condition which I can check programmatically. Enabling/Disabling the items via plugin.xml is static, even if a condition…
user1034128
3
votes
7 answers

Do you look at which variables a method uses before refactoring a large class into smaller ones?

I am interested in exploring the idea that the relationship between methods and the member varialbes they use can give a hint to how the class could be broken up into smaller pieces. The idea is that a group of variables will be closely related to…
willcodejavaforfood
  • 43,223
  • 17
  • 81
  • 111
3
votes
3 answers

Eclipse new plugin Project: Not choosable

just an easy quesition but I can't find any answer in this wonderful world wide web... I just want to create a new Plugin Project based on Eclipse Helios. Normally this feature should be shipped with this version (Version: Helios Service Release 2…
John Rumpel
  • 4,535
  • 5
  • 34
  • 48
3
votes
1 answer

Eclipse .class outline viewer

I am used to work on Visual Studio for C# coding and eclipse for Java coding. Though my experience with eclipse is very positive, I lack the nice and welcoming text file that VS generates for IL classes without source attached (third-party or not…
Paul
  • 1,757
  • 2
  • 11
  • 21
3
votes
1 answer

Override existing Eclipse plugin extension

I have an existing Eclipse plugin that provides an extension point. The plugin uses standard Eclipse mechanism to find the extensions. In this plugin's code, following code is used to get the extension. IConfigurationElement[] config =…
Fu Cheng
  • 3,385
  • 1
  • 21
  • 24
3
votes
2 answers

Disable refresh of target on build

I'm using tycho to build my rcp application. Sadly, today I have to release the first internal milestone, but one of the projects I'm using is down (The great LWJGL - http://www.lwjgl.org/) and consequently my build fails because I cannot resolve…
Matteo
  • 1,367
  • 7
  • 25