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

Cost effective Eclipse plugin license solution

I have an Eclipse plugin and want to release it. I want to add a license facility that limits the feature set depending on trial periods and annual renewals. The only solutions that I have found are EasyLicenser, flexlm and JProductivity. Each of…
Phil
  • 276
  • 1
  • 10
3
votes
2 answers

Supporting multiple versions of Eclipse

I have an Eclipse plugin and I am aiming for 3.1 or 3.2 as a minimum version to support. The problem is that some of my code only works in version 3.5 and above (see my other question: Is there an alternative to CaretListener in Eclipse?). Now that…
Alan Spark
  • 8,152
  • 8
  • 56
  • 91
3
votes
1 answer

adding a text editor to a swt List widget

In the eclipse plugin I am working on, I want to make editable the content of a List (org.eclipse.swt.widgets.List). However, most of the examples I have found show only how to add an item editor to either a swt Table or a Tree. Is it possible to…
Sergio
  • 8,532
  • 11
  • 52
  • 94
3
votes
1 answer

IDE plugin's for developing multithreaded network applications

I am looking for a plugin that helps developers create multithreaded network applications that works with either Eclipse and/or Netbeans. Should allow for functionality such as: Graphical modeling of callbacks Configuring executors Creating custom…
3
votes
1 answer

Validate OCL attributes of my model using Eclipse papyrus

I'm making a translation model on Magicdraw/Cameo between two metamodels, using several metamodels in its environment. This model contains OCL expressions, and I would like to use Eclipse to check the syntax of the OCL expressions of my model (I…
Kaly
  • 51
  • 3
3
votes
0 answers

Configuring Quercus on Google App Engine

I am currently working with GAE and was trying to figure out if there was some way that I can run php on GAE. Fortunately, I came across Quercus and was very happy to find that it had all that i needed. But the problem now is that once I include…
Anand Sainath
  • 1,807
  • 3
  • 22
  • 48
3
votes
0 answers

Is it possible to add a page to Multipage Editor from outside the FormEditor?

I have a multipage editor to which I want to add a page if the user double cliks on a box in another page of the multipage editor (which is a graphical editor). Is this possible? without multipage editor, I can do that using the following…
jean24
  • 189
  • 3
  • 9
3
votes
1 answer

Eclipse color theme plugin issue

I just installed the Eclipse color theme plugin and when I go to "Preferences-General-Appearance-Color Theme" and choose a new theme it does not change my colors. I am testing this in both the "Web" and "JavaScript" perspectives. Currently my…
computersaurus
  • 175
  • 1
  • 1
  • 11
3
votes
2 answers

unable to install google app engine plugin for eclipse(indigo)

when i try to install google app engine plugin for eclipse it keeps giving below error message at about 47% "installing software has encountered a problem. An error occured while collecting items to be installed" An error occurred while collecting…
3
votes
3 answers

How to enable autocomplete in GoClipse?

The instructions how to install GoClipse have been followed. I'm not getting any autocomplete stuff happening at all, either for local packages that I write, for built in stuff, or for GAE stuff (I have downloaded Go src to the SDK folder as the…
Curyous
  • 8,716
  • 15
  • 58
  • 83
3
votes
2 answers

Eclipse Java IDE restore

I was developing a plugin, using Eclipse IDE for java developers (Version: 2021-09 (4.21.0) Build id: 20210910-1417) During development, when I run it as an eclipse application, it opens a runtime-Eclipse application where the plug-in is present. In…
3
votes
1 answer

Syntax highlighting for Lua in LuaEclipse plugin

How do I turn syntax highlighting on in Eclipse editor?
user468311
3
votes
3 answers

Eclipse plugin for jar dependency detection and possible safe removal

I have a series of eclipse projects that use a bunch of third party jars. So many are included of different versions. But I have noticed that some of these libraries, due to code changes over the time, are not used any more but the reference to the…
Cratylus
  • 52,998
  • 69
  • 209
  • 339
3
votes
3 answers

Eclipse PDE creating a new project

I'm using the Wizard Extension to get some settings from the user. After on my plugin modifies an Eclipse project and then it should be included into the Package Explorer. The whole thing is then quite similar to "New Project → Existing…
Nautis
  • 157
  • 1
  • 10
3
votes
2 answers

Eclipse PDE, create controls

From the very helpful templates I´ve got some controls. But how do I discover where those controls are located. For example I know how to create a label or a button but how can I find a checkbox or add a browser to a button a List Box ... Isn´t…
Nautis
  • 157
  • 1
  • 10