The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
1answer
1k views

Why is IJavaProject.findPackageFragmentRoots returning an empty array?

Every time I call IJavaProject.findPackageFragmentRoots(IClasspathEntry cpe) and pass it an IClasspathEntry of kind CPE_PROJECT, it returns an empty list. I paused the debugger and ran the following ...
21
votes
1answer
953 views

Error in Preview of Custom Eclipse refactoring

I am implementing an new eclipse refactoring. This will enable developers to Pull-up the preconditions statements from a child method to the parent method. This all works perfectly when I select ...
13
votes
4answers
2k views

Eclipse plugin development resources

I'm looking for good resources on creating Eclipse plugins. Can anyone point me to must-read books, articles or tutorials on the subject? Update: added recommended books and links Books Eclipse ...
7
votes
1answer
161 views

Interface with Java Content Assist in Eclipse

As part of my plugin project, I'm thinking about interfacing with the content assist list displayed by Eclipse on Java files (I'm trying to re-order the list according to some external data). I've ...
5
votes
3answers
113 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
6answers
277 views

eclipse plugin development

I want to develop an eclipse plugin. Which is the best way to start?
4
votes
2answers
758 views

Require-Bundle and Import-Package versus feature.xml requires

When building an Eclipse plugin (lato sensu) which consists of multiple plugins and one feature, I have two ways of specifying dependencies: in the plugins themselves, using Require-Bundle and ...
4
votes
1answer
593 views

Building a custom Eclipse JDT New Project Wizard?

I want to develop some project templates for a few common Java projects I work on. Basically, I want to capture a few pieces of information in an extra Window, on the standard New Java Project ...
3
votes
3answers
243 views

Dynamic label of a popup action in eclipse plugin development

I want to create a simple eclipse plugin, which does: When you right click a java project, it will show a popup menu which has a item has label "N java files found in this project", where "N" is the ...
3
votes
2answers
286 views

How can I safely use an Eclipse p2 profile?

I encounter some problems when I try to update Eclipse plug-ins at the start up of Eclipse. My program pops up the dialog at Help -> Check for Updates at the start up of Eclipse. But, when the user ...
2
votes
1answer
32 views
+50

Generate HTML from Eclipse update site

I'd like to generate a HTML file that takes its content from an Eclipse update site. Ideally it should output organize the content based on categories and include the descriptions somehow. Input: ...
2
votes
1answer
110 views

How to disable the rename option from everywhere (i.e, from file menu & context menu) in eclipse plugin?

I am developing a plug-in which is basically create a new project, project contains more than one folder, and the folder contains our own customized editors. Now I dont want to allow the user to ...
2
votes
1answer
65 views

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
2
votes
1answer
77 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
562 views

Eclipse Plugin Development, associating different editors to same file extension

I am developing an eclipse plugin that associates a certain Editor to a specific file extension, say ".abc". The problem is I want to associate .abc files to that editor only for my own projects with ...
2
votes
1answer
628 views

How to refresh resource from Eclipse Plugin?

I have changed some resource, when i click on it in Eclipse i get info "Resource is out of sync", how can I refresh it? i tried org.eclipse.core.resources.IResource.touch(IProgressMonitor), but it ...
2
votes
1answer
133 views

Changing Eclipse colors from a plug-in - where can I change, e.g., Java -> Editor -> Syntax Coloring?

I thought I could write an Eclipse plug-in to alter my theme automatically for GNOME Darklooks. I made a simple test: /** * */ package org.misha680.darklooks.actions; import ...
2
votes
1answer
632 views

How can I enable “Mark Occurrences” in a Java editor that is loaded in a multi page editor?

I am working on a multi page editor that loads opens multiple files (e.g. java, html) in separate tabs of a multi page editor. The files get opened with the default editors associated with the file ...
2
votes
1answer
311 views

How can I show the Problem Marker properly? It is not displayed Text Editor and Problem View

I got many ideas from previous question (How to display an error sign on the Package when the Package has wrong information?) But the Problem Marker is not displayed. The resource I'm interested in, ...
2
votes
4answers
116 views

Code generation in Eclipse plug-in

I'm developing an Eclipse plug-in and I'd like to insert code automatically... sort of create a sample application automatically when the user presses a button. How can I go about it please? Thanks ...
2
votes
1answer
285 views

How to get method name from VariableDeclarationStatement

i have a variable of type VariableDeclarationStatement. I want to get the name of the method from this variable . How can i do that?Help
2
votes
3answers
520 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
4k views

How to show syntax errors in an eclipse editor plugin

How can I indicate syntax errors (e.g. an illegal sequence of tokens) in an eclipse editor plugin just like in the eclipse Java editor, i.e. by red wriggly underlines, a red marker on the scrollbar ...
1
vote
1answer
58 views

Eclipse Plugin Dev - Creating and updating custom markers as files are edited

I am working on an Eclipse plugin which uses custom textmarker annotations. There are plenty of examples out there which explain how to create and delete such markers and I have this all working fine ...
1
vote
1answer
39 views

Eclipse plugin is listed with other plug-ins, but UI contributions are missing

I wrote two Eclipse plugins that work fine when I use Eclipse to run them in another instance of Eclipse. I'd like to distribute the plugins to a relatively small number of people for feedback and was ...
1
vote
0answers
59 views

Eclipse setting editor location programmatically

I have an Eclipse RCP application in which I'm writing an editor which opens a palette to let user draw flows. Everything is working fine with editor itself. However I have problem with its default ...
1
vote
2answers
155 views

How can I expose Eclipse plugins as web services?

I've been doing my research about exposing Eclipse plugins as web services, but I'm getting confused. My requirement is basically to build an Equinox back end for a set of web services. I'll be ...
1
vote
1answer
47 views

How do I register a caret listener with an Eclipse editor?

I'm developing an Eclipse plugin that needs to respond to the current cursor position in an Eclipse editor. From the tests I've done, it appears that using the SelectionService only tells you when a ...
1
vote
4answers
84 views

Can I write Eclipse plugins using Groovy?

Groovy seems to fix a lot of the things I dislike about Java, and I was wondering if it would be possible to actually write an Eclipse plugin in Groovy instead of Java. Does anyone know if this is ...
1
vote
2answers
40 views

Eclipse Plugin uncommon dependency restriction

There is a plugin X with open source code. I have cloned it and added my Class C. Lets call my version Xm (modified). My plugin Y depends on class C. The question: How can I achieve that plugin Y ...
1
vote
0answers
112 views

Eclipse RCP not showing in Plugin registry

I am developing a simple RCP application. I am referring multiple sources in web and I am adding few UI entities like menu, splash screen,intro window etc. But some of my changes are not getting ...
1
vote
3answers
414 views

How to refer a file from jar file in eclipse plugin

I have created an eclipse plugin and I wanted to deploy during eclipse runtime. I have below package structure. com.myplugin | ---resources | ---server.bat As part of the plugin ...
1
vote
3answers
857 views

visibleWhen for command to appear in context menu

I am trying configure visibility of a command within the context menu using 'visibleWhen' expression within a menuContribution. What I am trying to do is make the command visible in the context menu ...
1
vote
1answer
243 views

To get list of class name, list of methods variables etc from a source file using eclipse plugin

Hi All Am new to eclipse plugin development. In fact never wrote one. I want to develope a plugin a plugin , before that just want to make sure whether its possible to implement below said features. ...
1
vote
2answers
246 views

How to load file from the Bundle in eclipse & My Eclipse?

This is very strange behavior I have noticed while developing Plugin. I have a file in the bundle that has to be loaded for wizard. I tried to load the file in eclipse using following code. Bundle ...
1
vote
1answer
76 views

Adding a plugin dependency to my plugin breaks existing non-plugin library (Google Data API)

I'm writing an eclipse plugin. This plugin uses a few local jar files, and additionally has a few dependencies on other plugins. I'm using the Google Code Search API from jar files, and it works ...
1
vote
1answer
53 views

How to receive mouse and keyboard events and override default behaviour for Eclipse ITextEditor?

I'd like to create an Eclipse plugin that emulates the behaviour of the vi text editor. This would require changing the way mouse and keyboard events are handled. So, for example if the user presses ...
1
vote
2answers
173 views

Eclipse plugin developement : Schematic Editor

I need to develop an Eclipse plug-in as a schematic editor in Eclipse. So some questions concerning this. Is it possible to draw geometrical objects (rectangle/line/triangle/etc) using Eclipse ...
1
vote
2answers
387 views

rename refactor in eclipse

While developing Eclispe plugin, I am able to programmatically rename a class-field using the following code. RenameSupport renameSupport = RenameSupport.create(field, newName, ...
1
vote
1answer
282 views

Eclipse Plugin development: How to get the targetID for a viewerContribution

I want to contribute a popup menu action to an existing editor which is provided by a 3rd party plugin. Inside my viewerContribution I need to specify targetID of the editor I want to add the menu ...
1
vote
1answer
246 views

Workspace is closed error

I have created a EMF model and generated a model code for that. I have created one plugin project and i have created one class named as 'CommandTest' which is having "public static void main()" method ...
1
vote
1answer
99 views

How to display an error sign on the Package when the Package has wrong information?

As you know, If package has a compile error then the package display an error sign. Error sign means Red circle with 'X'. My package has some other type file. (It is not a Java file.) If user modify ...
1
vote
2answers
471 views

Plug-in Development: Creating Problem Marker for a Given Resource

I seem to be having a problem with associating a problem marker with a resource; in my case, I'm trying to create a problem marker for the editor. To achieve this, I've tried to do the following: ...
1
vote
1answer
182 views

how to provide signature in jar files in eclipse-plugins development?

Can anybody tell me how to add signature in jar file. I have developed a plugin, but when i am installing it, it is showing some warnings that it is not a signatured jar file. Can anyone give me ...
1
vote
1answer
207 views

How do I get an IResource from an IEditorActionDelegate

I wrote an IEditorActionDelegate to fire from a context menu on a CompilationUnitEditor. From there I want to create a marker at the start line of the selected text. I have an ITextSelection, and an ...
1
vote
1answer
249 views

How to create an Eclipse editor plugin with syntax checking and coloring as fast as posible?

I'm working on a project that requires me to create a series of editors for languages that are quite different. The syntaxes are defined by us. I'm looking for a solution for this. Is there a ...
1
vote
0answers
1k views

Eclipse plugin with custom validation

I'm new to Eclipse plugin development, but I've been able to cobble together a plugin that defines a content type and a corresponding editor. I've gotten custom content assist going, so I know the ...
1
vote
1answer
162 views

How to pass object from editor to property sheet in eclipse plugin development?

I have an editor, this is suppose to interact with property sheet and outline views. I used Iselectionprovider interface to achieve this, but I am not able to do interaction between the editor and ...
1
vote
1answer
744 views

Difference between feature and plugin.xml?

I have some basic questions in eclipse plugin development, can anyone give clarification of the following questions, When should we have to add features in our plugin development ? What is the ...
0
votes
1answer
12 views

Find a replacement for JavaModelUtil.getResolvedTypeName

I've always used JavaModelUtil.getResolvedTypeName(ifield.getTypeSignature(), itype) in my plugincode. This is internal code of eclipse and I'm trying to replace this code with a "legal" variation. ...

1 2 3