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

Why or why not should we use Java 7?

Currently I'm using Java jdk 1.6.0_26 for my eclipse based application. As now Java 7 is available, could I directly switch to Java 7 from Java 6? If yes, what would be the impacts of it? If no, what are all the things should I look into so that I…
Anand
  • 2,239
  • 4
  • 32
  • 48
3
votes
0 answers

Apache CXF using eclipse: A required class was missing while executing org.apache.cxf:cxf-codegen-plugin:3.2.:wsdl2java

When trying to build our project from within Eclipse I keep getting the following error: Execution generate-sources of goal org.apache.cxf:cxf-codegen-plugin:3.2.0:wsdl2java failed: A required class was missing while…
mmo
  • 3,897
  • 11
  • 42
  • 63
3
votes
2 answers

Eclipse Plugin: Creating a dynamic menu and corresponding handler?

I am trying to write what I think is a very simple Eclipse plugin, but I am really struggling to find my way around as I have never worked with the PDE before. Basically what I am trying to do is add a sub-menu to the Java Project context menu that…
DaveJohnston
  • 10,031
  • 10
  • 54
  • 83
3
votes
4 answers

Eclipse plugin - Editor associated to file extension and perspective

I'm developing tow eclipse plugin, I have the next problem: I have two perspective that manages the same files. I would like to make an association between file extension - editor - perspective. I mean if I open the file extension .XXX in…
Rafael
  • 31
  • 3
3
votes
1 answer

Add headless capability to existing eclipse plugin

I have an existing Eclipse plugin which run as a regular IDE plugin, receiving commands from the GUI and returning output in custom views. I want to add an ability to also be able to run that plugin in headless mode, with the input received from the…
Oak
  • 26,231
  • 8
  • 93
  • 152
3
votes
1 answer

Eclipse Plugin Version Mismatch Issue

We have been having an interesting issue with the Eclipse update when some of our users update our feature/plugin to the latest release. Please see screenshot attached. We have observed that in some cases the feature updates (and shows in the about…
Abhishek Rakshit
  • 691
  • 7
  • 12
3
votes
2 answers

Is it possible to write plugin for eclipse other than Java, in Eclipse?

Can anyone help me to write a plugin for eclipse in c++? @weekens and @celavek thanks for the information. I am going through JNI and will try to implement it. @celavek: what kind of master/control we have to do? is it riskier to handle in C++ and…
Ambuja
  • 197
  • 1
  • 12
3
votes
1 answer

How to get the path of the Currently opened file from eclipse IDE?

I am developing a plugin. I want to know the currently opened file's path name programmatically. It would be of great help anyone could help. Thanks Partha
user844066
  • 83
  • 3
3
votes
1 answer

SWT color picker widget

I want an SWT widget for color picker.The closest I could find was a color dialog box in which case a dialog box appears to select colour. But I want a drop down color picker.
bujju
  • 53
  • 5
3
votes
1 answer

When an Activator class/"Bundle-Activator" is needed in plug-in and when it's not?

I've implemented "New Wizard" plug-in for my content-type. Tested it - it works. Then I've found that neither Bundle-Activator was declared, nor the Activator class was defined. The question is - when the Activator class is really needed in…
outmind
  • 759
  • 1
  • 10
  • 30
3
votes
2 answers

Spring Tool 4.10 having issue after install JBoss Tools - "Download Quick Start list" and "Update Project wizard list"

I have Spring Tool 4.10 and running on AdoptOpenJDK16 with OpenJ JVM: When I install JBoss Tools For Eclipse I started getting the following error. 1. Download quickstarts list Error: !ENTRY org.eclipse.core.jobs 4 2 2021-05-18…
3
votes
1 answer

How to show properties page programatically when clicking the customized icon on the toolbar in Eclipse Plugin development?

I am new to Eclipse Plugin development. I have already customized my main menu and toolbar, as well as properties page. Now I want to have something like: whenever the user clicks the customized icon on the toolbar, it will show the properties page…
jianinz
  • 163
  • 1
  • 11
3
votes
1 answer

"invalid command-line parameter" error while trying to make a hello world example for Android

I just decided to start developing apps for Android and I encountered some problems. I get this error when I try to build a hello world example from http://developer.android.com/resources/tutorials/hello-world.html#top: [2011-07-17 00:22:46 -…
yanncore
  • 59
  • 1
  • 2
  • 3
3
votes
1 answer

No marketplace entries found to handle swagger-codegen-maven-plugin

Is there a way to resolve/suppress the error "No marketplace entries found to handle swagger-codegen-maven-plugin:3.0.23:generate in Eclipse." when importing projects into Eclipse? swagger-codegen in my pom.xml is shown below,
Jimson James
  • 2,937
  • 6
  • 43
  • 78
3
votes
1 answer

Eclipse 'Unhandled loop exception' on Team > Commit

I recently started using git with the egit plugin in eclipse, and I thought I had everything working. I cloned a remote repository to my machine, then made a change to a file, and went to commit the change via selecting the file in the project, and…
NT3RP
  • 15,262
  • 9
  • 61
  • 97