Tagged Questions

eclipse-pde refers to the Eclipse Plugin Development Environment (http://www.eclipse.org/pde/) providing tools to create, develop, test, debug, build and deploy Eclipse plug-ins, fragments, features, update sites and RCP products.

learn more… | top users | synonyms

20
votes
9answers
15k views

Running Eclipse Junit Plugin tests with Junit 4.4 or newer — why aren't tests detected?

I need to use JUnit 4.4 (or newer) in a set of eclipse plugin tests, but I've run into the following problem: Tests are not detected when running with the junit 4.4 or 4.5 bundles from springsource ...
15
votes
4answers
12k views

How to run Eclipse launch configurations programmatically?

I'm finding it difficult to phrase this question well, as there are quite a few generic terms (run, configuration, launch, etc.). Here goes: You can save run configurations in a .launch file. (in the ...
11
votes
2answers
1k views

Eclipse: What is the minimum Eclipse installation needed for a headless PDE build?

I am currently using PDE build in headless mode to build my OSGI Bundle project. The PDE Antrunner task uses an Eclipse installation and I am just pointing it to my local Eclipse installation. ...
9
votes
2answers
1k views

Best practices for Eclipse Feature Integration Testing

I am developing an Eclipse feature consisting of several Eclipse plugins, using Equinox Declarative Services (DS) to wire the plugins together at runtime. I would like to add integration tests to ...
9
votes
6answers
14k views

Automating unit tests (junit) for Eclipse Plugin development

I am developing Eclipse plugins, and I need to be able to automate the building and execution of the test suite for each plugin. (Using Junit) Test are working within Eclipse, and I can break the ...
9
votes
7answers
3k views

Building Eclipse plugins and features on the command line

I have a bunch of Eclipse plugins and features, which I would like to build as part of a nightly (headless) build. I've managed to do this using a complicated setup involving manually specifying paths ...
8
votes
4answers
3k views

Deploying a newly developed Eclipse Plugin

I have written an Eclpise plugin (an Error Parser for the CDT), and it works just fine in the debugger version of eclipse. However I cannot for the life of me figure out how to install the plugin ...
7
votes
3answers
4k views

Programmatically showing a View from an Eclipse Plug-in

I have a plug-in to an Eclipse RCP application that has a view. After an event occurs in the RCP application, the plug-in is instantiated, its methods are called to populate the plug-in's model, but ...
6
votes
3answers
456 views

Developing on Eclipse 3.4, running on Eclipse 3.3

I'm developing an Eclipse plug-in, based on a bunch of core Eclipse plug-ins like SWT, JDT, GEF and others. I need my plug-in to be compatible with Eclipse 3.3, since many potential customers are ...
5
votes
3answers
102 views

How to develop Eclipse plugins in clojure?

I was wondering if there is a way to develop Eclipse plugins in Clojure. To be clear, the question is not about using Eclipse to write Clojure code. Both Eclipse and Clojure run on the JVM and I feel ...
5
votes
5answers
3k views

How do I attach source code locations to plugins in my Eclipse RCP target platform?

I've got a workspace with multiple RCP plugin projects. We've set the target platform, so we can build against a standard set of plugins, but are not able to see source code and Javadoc for all the ...
4
votes
3answers
458 views

Writing an Eclipse-aware Ant task

I would like to write a simple Ant task that would interact with an Eclipse workspace to get some information from it. I would like to be able to use the various Eclipse API's (for example, ...
4
votes
1answer
2k views

How to add a pulldown button in a view's toolbar?

I need to add a pulldown button to a view's toolbar in an Eclipse plugin. Actually buttons in the toolbar are added like that : <extension point="org.eclipse.ui.viewActions"> ...
4
votes
1answer
239 views

How to identify the source of a text selection event coming from a CompareEditorInput in eclipse?

In my eclipse plugin I have the following code: public class MyHandler extends AbstractHandler { @Override public Object execute( ExecutionEvent event ) throws ExecutionException { ...
3
votes
1answer
105 views

Eclipse Plugin Settings - Activation and Singleton Settings

In the Eclipse manifest editor, there exist check boxes for enabling/disabling plug-in activation and singleton behavior, as shown below: [ ] Activate this plug-in when one of its classes is loaded [ ...
3
votes
1answer
65 views

Is the PDE's “Update Site Wizard” still the right way to create an update site?

The point of this question is to get verification from someone knowledgeable of the current state of affairs with the Eclipse install system. I have an Eclipse plugin and I want to make an update ...
3
votes
1answer
107 views

Difference between IWorkbenchWindow and IWorbenchPage in Eclipse SDK

i still dont get what the differnce is between the two. the eclipse docs just say that a window can have many pages, but when does that happen. under what circumstances is the number of pages more ...
3
votes
1answer
218 views

Eclipse PDE - Plug-in, Feature, and Product Versioning

I am having much confusion over the process of upgrading version numbers in dependent plug-ins, features, and products in a fairly large eclipse workspace. I have made API changes to java code ...
3
votes
2answers
453 views

Eclipe PDE: Jump to line X and highlight it

A qustion about Eclipse PDE development: I write a small plugin for Eclipse and have the following * an org.eclipse.ui.texteditor.ITextEditor * a line number How can I automatically jump to that line ...
3
votes
2answers
367 views

Internationalized strings in Eclipse plugin.xml file are not found when installed in Eclipse application

I have created 2 plugins, implementing an ODA driver plugin and its UI plugin for the BIRT extension to Eclipse. My plugins both work as expected when eclipse starts up another eclipse application ...
3
votes
3answers
225 views

How can two eclipse plugin use the same preferences store?

I have two plugins, say com.site.plugin.core and com.site.plugin.ui. I'd like to separate core part from UI part, so at plugin com.site.plugin.ui I created Preferences page where I defined some ...
3
votes
2answers
714 views

Using a ILightweightLabelDecorator decorator

Having implemented one of the above, can anyone say how I might wire it up directly to a viewer? None of the usual sources explain. Martin.
3
votes
3answers
2k views

Eclipse editor plugin: “ERROR” when opening file outside project

I'm developing an editor plugin for eclipse. It works fine on files within eclipse projects, but when an external file is opened via the "File -> Open File" menu (which works file with, e.g. Java ...
3
votes
3answers
802 views

Suggestions for Automated Code coverage for an Eclipse RCP?

I would like to include some code coverage into our nightly build process. We're using CruiseControl, Ant, and Buckminster. Buckminster drives checkout from multiple repositories, and the PDE building ...
3
votes
2answers
1k views

How do you communicate between eclipse declarative services and Views (ContentProviders)

Say you have an eclipse plugin with various views, these views should display data from some OSGi bundle that pushes data to the Views. Rather than have every view communicate with the OSGi bundle, I ...
3
votes
3answers
1k views

SWT Image concatenation or tiling / mosaic

I have an Eclipse RCP application that displays a lot (10k+) of small images next to each other, like a film strip. For each image, I am using a SWT Image object. This uses an excessive amount of ...
2
votes
1answer
293 views

Eclipse Plugin: how to get the path to the currently selected project

I am writing an Eclipse plugin that will display a menu item in the context menu for a Java Project. I have written the plugin.xml as follows: <plugin> <extension ...
2
votes
1answer
95 views

PDE Build cannot resolve classes in plugins it depends on

Working Eclipse features and plugins, I have a problem with building two separate features (lets call them One and Two) where Two contains plugins that depend on plugins in One. I use PDE Build and ...
2
votes
1answer
531 views

PDE Headless Build (Feature-based) and Missing Required Plug-ins

When attempting to perform a PDE headless build, I am finding the eclipse.buildScript step to display the following: [java] generateScript: [java] [eclipse.buildScript] Some inter-plug-in ...
2
votes
1answer
67 views

Specifying path with whitespace in eclipse on mac os

I need to mention a path variable in eclipse Helios on Mac Os. The path I am specifying contains whitespace in it. Example: user/folder/android sdk I have tried following ways which failed in the ...
2
votes
1answer
146 views

How do I create this button in an eclipse plugin

Inside my eclipse plugin I want to create this button in a composite: Where do I get the icon? How do I create that button?
2
votes
3answers
206 views

eclipse listener for main menu bar selections

hey there i am trying to capture user selections from the menu bar , for example if the user pressed File in the menu, my plug-in gonna print "File pressed". i figured out how to listen to view ...
2
votes
1answer
166 views

Add system packages to PDE runtime configuration

I created an eclipse run configuration for a number of bundles. One of the bundles has a dependency to the following packages: com.sun.mirror.apt, com.sun.mirror.declaration, com.sun.mirror.type, ...
2
votes
1answer
163 views

How to write an editor that shows the content of a folder in eclipse?

Motivation I have written an eclipse plugin that shows me a list of all files and folders with unreviewed content. When selecting a folder, I want an editor to open showing all files and subfolders ...
2
votes
2answers
686 views

Scripting Eclipse with Rhino: classloader belongs to the plugin providing Rhino, not the plugin using it

I am using Rhino to script an Eclipse (RCP) application. The problem is that from Javascript I only have access to classes available to the plugin that provides Rhino, and not to all the classes ...
2
votes
3answers
503 views

Get IResources methods in eclipse development?

I'm developing an eclipse plugin and need to list of IMethods that belong to an IResource. I see IType has a getMethods function but not sure how to go about converting an IResource to an IType Help ...
2
votes
2answers
224 views

Update Site Creation Automation

I've developed an eclipse plug in, and created a feature and an update site projects inside eclipse to publish it. What i am looking for, is a way to automate the process of creating my update site ...
2
votes
3answers
1k views

Running Eclipse Plug-in tests in non-ui thread

How do I run a Eclipse JUnit plug-in test in a non-ui thread when running the tests from the command-line? In the launch configuration dialog I can uncheck the checkbox "Run in UI thread", but how do ...
2
votes
2answers
1k views

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 ...
2
votes
2answers
451 views

How do I get notified whenever a new editor is opened in Eclipse?

I have a view which would like to be notified about all the currently opened editors. Where can I add a listener to achieve this? I was expecting WorkbenchPage or EditorManager to have some ...
2
votes
2answers
1k views

jface tableviewer cell-span

I am endeavouring to render some hierarchic data in a TableViewer (the TreeViewer isn't a good fit - trust me on this :-). Consequently I need to render the parent cells with a row-span > 1. As far ...
2
votes
1answer
346 views

Easy way to add a context action to Eclipse

I'm trying to add a very simple action to the context menu of Eclipse: clicking with right button over a folder object, this action should call an external tool (configured in the "External Tools") ...
1
vote
1answer
61 views

Eclipse PDE: Custom QuickFix only available in Problems View?

i am having trouble with custom quick-fixes, which i want to provide in my Eclipse plug-in, and i'm hoping for someone more experienced than me in Eclipse PDE to have some hints for me on this issue. ...
1
vote
1answer
13 views

How to populate CheckedTreeSelectionDialog

I'm writing a test to learn how to use CheckedTreeSelectionDialog. This is the code. CheckedTreeSelectionDialog dialog = new CheckedTreeSelectionDialog(shell, new LabelProvider(), new ...
1
vote
0answers
29 views

How to generate a eclipse-launcher which will require asAdministrator during startup?

I have a eclipse-rcp based application and a running headless build. The application should require "asAdministrator" from the windows UAC, because it is some kind of configuration tool, which needs ...
1
vote
2answers
27 views

Return values from eclipse plug-ins through extension points?

i've got an Extensionpoint here which points to an interface: public interface IModelProcessor { public void processModel(Object diagramModel); } So, each plugin which wants to usw that ...
1
vote
1answer
41 views

pluginPath and dependencies from remote p2 repositories

In my pde build I'm using pluginPath property to resolve dependencies from local p2 repositories for example: ...
1
vote
1answer
194 views

Headless pde build with Java 7 / Eclipse 3.7.1 fails

We are trying to get a working headless PDE build for our application but compiling fails during the build with the following message: ERROR in C:\...\TimerManager.java [javac] ...
1
vote
0answers
713 views

How to set up Eclipse PDE/Build with Indigo?

In my project I use PDE/Build to build my RCP application on a remote server in Hudson. The current version is a package based on Eclipse Galileo and it works fine both as a builder application and as ...
1
vote
2answers
95 views

Eclipse PDE creating a new project

I´m using the Wizard Extension to get some settings from the user. After on my Plugin modifies a Eclipse project and then it should be included into the package explorer. The whole thing is then quite ...

1 2 3