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
2 answers

How to run Eclipse Project using Escripts plugin?

I have installed Eclipse Escripts plugin, but it does not seem to have proper documentation and I am very new to Eclipse JDT API. I am trying to write a script which can run Server and several Clients with just one click using Escripts. Server and…
Nikolay Kuznetsov
  • 9,467
  • 12
  • 55
  • 101
4
votes
1 answer

Logging strategy in Eclipse PDE

I am writing an Eclipse 3.7 Plugin. I am new to Eclipse PDE but not to JAVA. I am trying to understand the logging strategy that should be used. My questions is - How should I go about logging from my plugin? I found a couple of resources (…
Pushkar
  • 7,450
  • 10
  • 38
  • 57
4
votes
2 answers

Prevent launching eclipse GUI when running JUnit Plug-in Test

When I started JUnit Plug-in Test, I always have eclipse GUI launched. Can I change the setup to prevent this? I'm testing eclipse plugin - Difference between `JUnit Plug-in Test` and `JUnit Test` in eclipse
prosseek
  • 182,215
  • 215
  • 566
  • 871
4
votes
1 answer

Jetty 9 WTP plugin

do anybody know if there is a Jetty 9 WTP plugin for Eclipse available? I can't find official one (only for Jetty 7&8) so maybe there's some 3rd party plugin? Thanks a lot.
petrushka1986
  • 1,485
  • 2
  • 11
  • 17
4
votes
2 answers

eclipse e4 (Juno) : Not able to hide view Part minimize/maximize buttons

within part stack, i have part views. , and each view has minimize/maximize buttons, Is there is any way i can hide minimize/maximize buttons for some particular view part ?
Khalid Azam
  • 1,615
  • 19
  • 17
4
votes
1 answer

Programmatically add options to pulldown button in eclipse

In eclipse I have commands defined for buttons in the main button toolbar they have. I have one command/button in there that's set as a pulldown button and I'd like to programmatically add options to it. Kinda like how you can hit the little drop…
MechaMarinara
  • 620
  • 1
  • 7
  • 22
4
votes
2 answers

Add a Maven dependency to a Eclipse Plugin project

just a simple question: I need to add a Maven dependency to a Eclipse Plugin project. The project has not a POM file, so I converted it to a Maven one. Now I have plugin.xml file and pom.xml file. POM contains the dependency I need to satisfy, but…
4
votes
2 answers

build.properties - Valid entries in a Tycho build

When I create Eclipse plug-in project, and after that try to build it with Maven/Tycho, one of the generated files is build.properties file. It contains several entries which describe what part of the project to be built. My question is, what are…
moisko
  • 101
  • 1
  • 10
4
votes
2 answers

How do you contribute a command to an editor context menu in Eclipse

I want to contribute a command to the context menu of any text editor when text is selected. In "the old days", I would have done this using objectContribution and a nested action with "enablesFor='+'". How does one do this using commands instead of…
marc esher
  • 4,871
  • 3
  • 36
  • 51
4
votes
2 answers

How to build and install an Eclipse plugin using ant

How do I build and install an Eclipse plugin using ant? I want to build a plugin as a zip file and then install the plugin on 32bit or 64bit eclipse. What am I supposed to do here?
user1799630
  • 61
  • 1
  • 3
4
votes
1 answer

how to add tooltip on the entries and NOT on the combo in JFace ComboViewer

I am loading my ComboViewer with over one thousand elements. Some elements are longer than the width of underlying combo. I want to add tooltip on the entries and NOT on the combo. I want it in such a way that, when the list drops down and the user…
Sandeep Yohans
  • 929
  • 1
  • 14
  • 36
4
votes
2 answers

How to disable JBoss Tools editors in Eclipse?

I do have the problem that all my files are opened by default with a relevant JBoss Tools editor. Unfortunately they are slow on my machine and not always useful if I just want to edit a single tag in a XML file or so. If possible I don't want to…
Thomas
  • 8,357
  • 15
  • 45
  • 81
4
votes
1 answer

How to write a consolePatternMatchListener extension point?

I am running an external tool from a scala plug-in project. The tool might generate errors/warnings on certain conditions, which I would like to make clickable, to be able to jump to point of occurence. The error is message is of following…
4
votes
1 answer

Cannot see PHP Content Type in Eclipse preferences?

I have a new eclipse Juno installation with PDT. I imported my preferences and everything seems to be working normal except the in the content type section I do not see PHP Content Type. I see "%content-typ.name0" for the php content type; as seen…
awm
  • 1,130
  • 3
  • 17
  • 37
4
votes
2 answers

How to hide files in eclipse plugin development?

I want to hide a physical file (eg: Sample.abc) which is generated at runtime.This should not be shown to the user.How can i programmatically handle this logic in my eclipse plugin development. Thanks in advance Regards Mathan
Mathan