eclipse-pde refers to the Eclipse Plugin Development Environment (http://www.eclipse.org/pde/) providing tools to create, develop, test, debug, build and deploy OSGi bundles, Eclipse plug-ins, fragments, features, update sites and RCP products.
0
votes
0answers
16 views
compiling plugins having cyclic dependency in Eclipse PDE build
I have the following set-up:
Eclipse version:3.7.1
Eclipse Plugins Plugin1, Plugin2: Plugin1 depends on Plugin2 (specified in plugin.xml/Dependencies/Required Plug-ins); Plugin2 in turn depends on ...
0
votes
0answers
11 views
Eclipse PDE PyUnit Test Listener
I am developing a plug-in in Eclipse (with the plug-in development environment) and need to have code executed when all or some unit tests run in PyUnit in the Eclipse environment.
What I need is ...
1
vote
2answers
27 views
Why does Eclipse load all plugins in a workspace?
I'm using Eclipse 3.6 for developing Eclipse plug-in. In the same workspace, I have 2 Plug-in projects: projA and projB. No mater which project was run, both two projects will be loaded in the new ...
0
votes
0answers
11 views
View XML in view and changes in view change the XML
I am working on a eclipse PDE application.
I took some help from this link which helped me in creating a JFACE WIZARD.
http://www.eclipse.org/articles/article.php?file=Article-JFaceWizards/index.html
...
1
vote
0answers
24 views
Eclipse Plugin - one of the plugin projects in “features” won't compile
My plugin is built by two plugin projects (two plugin projects are in the same workspace).
One of them is an ordinary plugin which has toolbars etc. The other one is a Scala-based XML interpreter.
...
1
vote
1answer
36 views
GAMA agent based modeling 1.5.1 issue with Eclipse Indigo sr2 and PDE plugin “unable to open editor” message
I am using the GAMA framework for agent based modeling, which relies on Eclipse Indigo SR2. I was not sure if this was a GAMA issue or an Eclipse issue, so I am posting to both the GAMA help as well ...
0
votes
0answers
29 views
org.eclipse.ui.activties working for one entry and not for the other
I am trying to hide a context menu entry using activities. There are some 10-15 entries in the context menu. I am able to hide one such entry using the pattern=plugin-id/ui-id;
Surprisingly, this is ...
0
votes
0answers
10 views
Overriding existing menu entries in eclipse
I have an entry in context menu on a given object. This is the default behaviour of the product. Is it possible to alter it such that, this entry gets removed when I try RMB context menu on that ...
0
votes
0answers
30 views
How to get workspace location in Eclipse 4.x
I need to get workspace a location using API in Eclipse 4.x platform. I know that I can use
ResourcesPlugin.getWorkspace().getRoot().getLocation().toString();
but I'm wondering if there is another ...
0
votes
1answer
54 views
JUnit: No runnable tests in Eclipse. but works with maven
JUnit gives me "No runnable tests" when run under Eclipse, but works fine in the maven build.
I had a working test fragment, and then let the host plugin extend an extension point. This implies i ...
1
vote
1answer
49 views
eclipse JDT setting the project
I am a beginner to Eclipse JDT. I was going through some tutorial and found one good example for creating the java file. In this below example in which project they will create the package and java ...
0
votes
0answers
9 views
How to get ISchemaAttribute
My requirement is I need to open JavaAttributeWizard when I click one toolbar icon. So I checked the constructor, it takes JavaAttributeValue and for JavaAttributeValue it is taking one parameter as ...
0
votes
1answer
40 views
Are there any non-deprecated Eclipse PDE plugin templates?
I'm learning how to develop plugins for eclipse, and I'm trying to add a menu item to a context menu. That sounds simple enough, and in the "New Plugin Project" wizard, several templates are given, ...
0
votes
2answers
34 views
How do you package an Eclipse plugin as a directory so additional files may be added?
I need to be able to include additional files with the JAR plugin and I am having difficulty finding documentation describing how to do this. When looking in the Eclipse/plugins directory it looks as ...
1
vote
1answer
32 views
Where is the option to convert from a java project to a plug-in project?
I cannot find it. Under PDE tools (after right clicking on project), I only have Open Manifest, Organize Manifests, Externalize Strings, Internationalize, API Tools Setup, Update Classpath, and Open ...
0
votes
2answers
66 views
Eclipse Plugins: Retrieving the missing HelloWorld.actionSet
Using Juno and Eclipse PDE.
Trying to create a simple plug-in (using the template Hello, World Command). When I run it the following message appears in the log:
!MESSAGE Unable to find Action Set: ...
2
votes
1answer
175 views
How to correctly specify eclipse-plugins in category.xml of tycho eclipse-repository?
I want to create a p2 repository of some eclipse-plugins during a tycho build.
My category.xml looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature ...
0
votes
0answers
58 views
How to get IWorkspace object from workspace path?
I am developing a command line application, which takes workspace path as one of its arguments.
For further processing, I need to get IWorkspace object from the workspace path provided as an ...
1
vote
1answer
90 views
How to highlight a node in GMF based editor?
I am in the process of implementing search functionality in my GMF editor. So what i am planning to do is utilize EMF Search plugin to search within the EMF objects. But when I click on the search ...
1
vote
1answer
79 views
How to use properties from a child in EMF
I have a sample EMF hierarchy like this -
Parent : Shape
Child 1 : Circle
Child 2 : Square
Child 3 : Rect
Now I want to generate my properties view in Eclipse in such a way that . I have a drop ...
3
votes
1answer
93 views
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 ...
0
votes
1answer
26 views
General questions about PDE programming
Here are two short, but hopefully good questions:
When to use plugins and when fragments?
What is a headless PDE build and when to use it (and when not)?
0
votes
1answer
45 views
Bundle names of built plugins
Once the plugins are built the bundle name contains the time stamp, for e.g.
org.apache.batik.transcoder.source_1.6.0.v201011041432.jar
Also in manifest.mf the Bundle Version contains the same ...
0
votes
0answers
47 views
What Best practices for Build Environment should we follow? [closed]
What best practices we can follow to make the builds more fast, more reliable. Which build tools to use, what best practices we can follow up for ANT/Maven scripts?
1
vote
1answer
59 views
How to capture changes inside methods in an Eclipse plugin
As part of my Eclipse plugin project I need to track additions, deletions and changes to methods in order to implement the functionality I'm after.
By registering a listener through ...
1
vote
0answers
31 views
How do I specify P2 causality advice in a tycho build
I would like to have additional features considered for installation, if a main feature is installed. It seems the P2 term is causality advice. Does anyone know how to formulate this advice for a ...
1
vote
1answer
195 views
Optional extension points in plugin.xml
I want to define an extension point in my plugin.xml which is not available in my target platform. This is fine for me, because I want to take advantage of it only if it's available .
However ,when I ...
3
votes
1answer
379 views
Eclipse Incremental Builder Plugin does not work
I recently started working with Eclipse's Plug-in development environment on Eclipse RCP (4.2.1 Juno). I created a project with the Incremental Builder Template. My goal is to perform a build process ...
2
votes
1answer
557 views
Eclipse Custom Content Assist Based on Default Java Content Assist results
I'm in the process of implementing a task tool. As a part of this I'm making an Eclipse plug-in to reflect certain code level issues.
In the Eclipse plug-in my aim is to attach some visual aids to ...
0
votes
1answer
216 views
Eclipse Custom Marker View
I am trying to create a customized marker view. In this view I want to restrict/filter the resources to selected project only. This project name will be supplied dynamically.
For e.g, in the context ...
0
votes
3answers
208 views
Eclipse PropertyPage enabling
I want to add a property page in eclipse via my plugin. This property page must be enabled only for projects of my nature. I have written the below code in plugin.xml
<extension
...
0
votes
1answer
53 views
Running p2.process.artifacts in Jenkins
I read the SO post Running P2 Ant tasks outside Eclipse, which was a great help. I am trying to call p2.process.artifacts, however I am not sure what arguments should I pass to java task call. What ...
2
votes
1answer
134 views
DragSourceListener never called while dragging and dropping file inside eclipse project explorer
I am working on eclipse plugin that will allow a java bean to be dragged onto jsp file then on the drop event some code generators will be called.
I'm attempting to use the extension point ...
0
votes
0answers
102 views
Eclipse Derived Resources
My Plugin tries to clone a mercurial repository and add some plugin specific files like
.customplugin/service.xml, .customplugin/info.xml. I dont want these files to be tracked by version control. I ...
1
vote
0answers
290 views
How do I remove a classpath entry from a classpath container initialized by another plugin?
I'd like to modify a classpath container initialised by another plug-in. Specifically, I'd like to filter/remove certain classpath entries in the "Android Dependencies" classpath container initialized ...
0
votes
0answers
46 views
PDE modify call-hierarchy-view and resource-rename-functionality
i currently develop a plugin 4 eclipse. I got a nature and some markers.
Now, i like to modify the Call-Hierarchy-View to add my own JSF-Mappings and a posibliity to global-rename the references. Is ...
1
vote
1answer
196 views
Eclipse intro/welcome page definition with content attribute does not find the file
In my plugin/RCP I have defined my own contributions to Eclipse universal intro with page definitions inside the toplevel xml (the one pointed to by the "config" attribute to the "configExtension" ...
2
votes
2answers
879 views
How to programmatically find a java file in eclipse from full classname?
Inside an eclipse plugin, I'd like to open a file in editor. I know the full package and class name, how can I determine the path of the java file from this?
0
votes
1answer
24 views
Is there a way to determine the project based on the node expanded(not necessarily selected) in a Project in Eclipse?
I have added a javascript library to my project programatically. I add different versions of library based on user preference during project creation.
I am able to achieve this but I am not able to ...
1
vote
3answers
192 views
Eclipse configuration to support dual Equinox/Felix environments
What are some configuration changes to make Eclipse PDE best support working with both Equinox and Felix?
Here's an example problem I'm currently having. I can run my application ok via the Eclipse ...
1
vote
1answer
70 views
How to remove “Java Search” entry from Search Group Icon in Eclipse PDE using Activities?
I am aware that activities can be a powerful extension point to filter UI Contributions. I need to customize my product with minimal search entries in the Group Search Icon.
I've used
...
2
votes
1answer
469 views
eclipse plugin: run command in console, get stdin
I'm making an eclipse plugin where I want to run a system command, and have the output of the command go to the eclipse console. I know how to do this via ...
3
votes
1answer
293 views
Weaving AspectJ aspects included in an Eclipse 3.7 plugin project
Goal
I am building an Eclipse plugin targeting the 3.7 environment and would like to include an aspect in the plugin that provides advice on code that is also in the plugin.
Setup
I have been ...
1
vote
0answers
402 views
Removing context menu entry in Eclipse PDE using Activities
I am using org.eclipse.ui.activities to remove certain context menu entries.
I was successful in removing
Team,Show in Remote Systems View,Restore From Local History
by using the below in my ...
3
votes
2answers
537 views
OSGi bundles dependency management in Eclipse
I have an OSGi bundle which is in Eclipse IDE represented as Eclipse Plug-in Project. The only way I found to satisfy the dependencies of this plug-in/bundle is to
1) import all dependencies (.jar ...
1
vote
1answer
306 views
Eclipse plugin that just runs a python script
I want to generate an Eclipse plugin that just runs an existing Python script with parameters.
While this sounds very simple, I don't think it's easy to implement. I can generate a Eclipse plugin. My ...
0
votes
2answers
128 views
How can I import org.eclipse.pde.internal with sources?
The problem is, that this package and its children are not seen in the list of packages of "import". When I import all pde packages, org.eclipse.pde.internal somehow becomes usable anyway. But I don't ...
2
votes
1answer
278 views
How do I use “org.eclipse.debug.ui.launchShortcuts”?
I have written a custom launcher in Eclipse which I can access via the "Run As" and "Debug As" menu options on the toolbar. I also want to be able to launch via the package explorer and via right ...
1
vote
1answer
78 views
How do I create a dockable “perspective-like” view in Eclipse PDE?
I've been searching for this information via Google but can't seem to get a satisfactory answer.
I wish to create a dockable view (similar to the "perspective" selection toolbar item) in Eclipse but ...
0
votes
1answer
176 views
eclipse unable locate installable unit
I created my own target definition. It worked perfectly until now. Today I opened this target definition and got following error for all software sites I have there:
unable to locate installable unit ...

