Questions related to developing plugins for Eclipse, the software development environment.

learn more… | top users | synonyms

0
votes
3answers
48 views

Good tutorial for Eclipse plugin development

I am new to Eclipse plugin and would like more detailed tutorial on this subject. I've searched the forum but couldn't come up with anything I can follow. My objective is to write a builder plugin ...
0
votes
1answer
33 views

How to make a table refresh in an Eclipse plugin?

I have developed an eclipse plugin, when I clicked the button a table appears on the view. However, this table does not refresh itself, when I click it again or when I a run operations on the table ...
1
vote
0answers
33 views

Make a table appear automatically in an Eclipse plugin

How make a table appear automatically in an Eclipse plugin? I am currently developing an eclipse plugin and I created this option in the plugin that provides me a table on the "view". However, every ...
0
votes
0answers
20 views

Custom Server Adapter - Eclipse resources

As we all know, we can create custom server using eclipse programmatically by either using generic server adapter or custom server adapter. My question, is there any tutorial/docs/articles etc ...
0
votes
1answer
51 views

Call a method when object state changes

I am providing an annotation @validateName which anyone can include in their code. Suppose some one coded class Person { @validateName private String name; .... } Then they can call ...
0
votes
0answers
23 views

How do eclipse core plugins update eclipse ui plugins?

In Eclipses plugin architecture, a core or model plugin exists to handle backend, and a ui plugin handles presentation. The UI plugin depends on the core plugin, but the core plugin does not depend on ...
0
votes
1answer
24 views

No schema found for the org.eclipse.wst.server.core.serverTypes extension point

I am trying to create a new server type plugin programmatically and after re-search I found that I need to use org.eclipse.wst.server.core.serverTypes extension point, but when I try to add above ...
1
vote
1answer
23 views

Run plugin handler continuosly

I currently have a Eclipse plugin that highlights Instance variables in a Java class. The command handler is invoked when a menu option is clicked. How can I change it so that instead of clicking the ...
0
votes
0answers
33 views

How to add a console whenever a (custom) launch configuration starts in Eclipse RCP?

I want to add a console to the main Console view whenever my custom debug/run lanch configuration starts. I have 2 plugins for my custom debugger, as per "best practices" in Eclipse: a Core plugin ...
0
votes
1answer
54 views

Caret position of Eclipse text editor

I'm writing a little plugin to move the caret position of an Eclipse text editor to the other side of a selected block. Problem is that I don't find a nice way to discover whether the selection is ...
0
votes
1answer
21 views

Eclipse plugin can't be installed directly from weblink

My plugin has the form of a zip file and is located at http://scg.unibe.ch/wiki/projects/DoodleDebug/DoodleDebug-update-site?view=PRDownloadView. Downloading and installing it from a local file works ...
0
votes
0answers
22 views

Not able to fire property tester in plugin.xml

I am trying to add a new menu entry into the context menu in our application. I want it to enable when a certain condition is met. I have looked up for PropertyTesters and wanted to give it a shot. ...
0
votes
0answers
58 views

How to handle TabbedPropertySheetPage in Eclipse PDE?

I'm trying to add a TabbedPropertySheet based on the following tutorial: http://www.eclipse.org/articles/Article-Tabbed-Properties/tabbed_properties_view.html A difference is that I'm using a ...
0
votes
1answer
8 views

eclipse pde - Access cdt managebuilder definitions of a project

For eclipse pde, How do I access cdt build definitions of a project from code?
0
votes
0answers
27 views

Toggle breakpoints on custom editor in Eclipse RCP?

I want to toggle breakpoints on a new editor I created. I have a new editor and a new LineBreakpoint implemented and running. I can already toggle these breakpoints with Ctrl + Shift + B or Main Menu ...
0
votes
0answers
27 views

Create a marker or custom breakpoint with no attached resource?

I want to create a custom breakpoint. As per Eclipse Plugin Development and creating breakpoints: http://help.eclipse.org/indigo/topic/org.eclipse.platform.doc.isv/guide/debug_breakpoints.htm. It ...
0
votes
0answers
24 views

How can a user add custom breakpoints in a custom eclipse IDE?

I am developing a custom IDE plugin in Eclipse for a non Java language. I have created a debugger and an editor for it. I will be using this tutorial to create line breakpoints. And will further have ...
2
votes
1answer
64 views

How do I have my custom toolbar have its items updated via IElementUpdater

I've implemented a custom toolbar in my RCP application. I'm also using the org.eclipse.ui.menus extension to contribute commmands to the custom toolbar. <extension ...
0
votes
1answer
55 views

Is there any templating engine for standalone application(SWT/Swing etc) just like Velocity etc

As title says, is there any UI templating engine available for standalone applications (like SWT, Swing) just like we have apache velocity or freemaker available for web application? Currently we are ...
0
votes
0answers
66 views

Window Builder Pro - Generate event handlers in separate class?

After hand writing lot of complex UI for our SWT application (basically a eclipse plugin), I found out this excellent tool (Window Builder Pro) and it reduces our lot of hand writing UI effort. So I ...
2
votes
0answers
36 views

How do I disable single-key key bindings in Eclipse Text widgets

I am developing an Eclipse RCP application and have defined a custom context (org.eclipse.ui.contexts) for my editors. This context is activated whenever I invoke one of my editors. Further, I have ...
5
votes
2answers
184 views

Where to find design patterns, best practices for Eclipse plugin development

Our team is developing a Eclipse based IDE (typically a plugins), currently we are progressing good but I feel somehow we are feeling smell of bad practices in code. Example I can give here is, ...
2
votes
1answer
69 views

How project is Associated with perspective

After we create a new project in eclipse, a dialog will be showed as following picture if our current perspective is not associated with this kind of projct.So how do Eclipse make this ...
0
votes
1answer
53 views

Developing an Eclipse plugin that can add an External Builder to a project

EDIT: I was not able to figure out how to make my plugin add an external builder that has the same configuration as a manually added builder. I decided that using Bananeweizen's suggestion of ...
0
votes
1answer
24 views

Creating an IProcess that isn't a wrapper for a system process

In the article (and examples) How to write an Eclipse Debugger the implementation of ILaunch creates a new IDebugTarget (only in debug mode, not in run mode). While doing so it always creates a new ...
0
votes
1answer
30 views

Storing configuration file of an application in OS independent path

I am writing an application (basically eclipse plugin), so there are few combo-box, drop-downs etc, which I am getting values for them dynamically via XML file. My doubt is which is the best way to ...
4
votes
4answers
110 views

How to download Eclipse's Source code?

After spending awhile (their wiki pages for CSV access are no longer valid, the password provided does not work) and their SVN repositories do not contain the code to Eclipse IDE or the core plugins. ...
1
vote
0answers
39 views

How to get breakpoints from Eclipse without using the debug plugin/framework

Say I want execute some custom Java code for when a user adds or removes a breakpoint. I know that the normal way is handle this within eclipse's org.eclipse.debug.core framework, but I am not ...
1
vote
1answer
48 views

How to control the visibility of objectContribution in popupMenus?

Hi guys,I had create a popupmenu with code above and this menu would be only showed if the folder's name matched "AAA". Here is the problem:if there is a folder which is also named "AAA" after ...
0
votes
1answer
44 views

Is it necessary to dispose resources in Eclipse plugin

I am new to eclipse development, and while learning SWT, I came to know that I need to dispose the display using below fragment: while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) ...
1
vote
1answer
143 views

Eclipse plugin development - drag and drop between components in multiple plugins

I have developed a two plugins, plugin1 and plugin2. In plugin1 there is a one view called pluginOneView and in plugin2 there is another view called pluginTwoView. So my requirement is there will be ...
1
vote
1answer
47 views

Display a file dialog that prompts only for Eclipse Project File location

How can I arbitrarily display the same file dialog that occurs from New -> File ? I have an Eclipse Action where I wish to display the project file path dialog, and not the system file path dialog, ...
2
votes
2answers
126 views

Eclipse vs. OSGi Framework ?

Should I create an eclipse plugin with target platform OSGi or without it ? from Eclipse help "If you do not intend to use the Eclipse extension registry, then you should use the OSGi framework ...
0
votes
1answer
83 views

Code Highlight and cursor position in a StructuredTextEditor

My own plugin project has a editor(which implements org.eclipse.ui.part.MultiPageEditorPart) with 2 pages:one is a GraphicalEditorWithFlyoutPalette(which will parse XML files into figures) and the ...
0
votes
1answer
84 views

How to copy files created after ant run

My Ant code <?xml version="1.0" encoding="UTF-8"?> <project default="plugin_export" name="build"> <target name="plugin_export"> <pde.exportPlugins destination="C:\" ...
0
votes
0answers
64 views

A cycle was detected when generating

I get this error when I generate jar A cycle was detected when generating the classpath MyPlugin_1.1.0.201303061715, org.eclipse.jdt_3.8.0.v201209141800, ...
6
votes
1answer
175 views

eclipse plugin does not work after update to juno (eclipse 4)

I created an eclipse plugin that will hook into the save action to create a minified javascript file with the goolge closure compiler. See files below. That worked until eclipse 3.7.2. Unfortunately ...
0
votes
0answers
66 views

Eclipse JFace :: How to get rid of key binding conflicts while working in a multipage editor

I have an editor with multipage in which each page has copy paste delete actions and f3 navigation action. I create context and activate and deactivate the actions Below is how the plugin.xml looks ...
0
votes
0answers
198 views

Eclipse Plugin Development: How do I syntax color comment blocks inside comment blocks?

I am making a plugin voor UnrealScript and I found out that in UnrealScript you can have comment blocks inside comment blocks. In other words, the amount of */ have to match the /* and /** in ...
1
vote
1answer
30 views

Pop-up menu in Eclipse gets shrunk

I have a problem with the context menu in Eclipse Juno. I have a class extending the ContributionItem class. This creates menu items. Each menu item has an index. But I don't know, what value have the ...
1
vote
2answers
66 views

Hide perspective in eclipse with xml

I'm new to this whole eclipse RCP and PDE thing, so any help most welcome ! Basically I've created a new perspective, mostly using xml perspective and perspectiveExtension in my plugin.xml. It ...
1
vote
1answer
102 views

Is it possible to programatically set an Eclipse RCP button as 'checked'?

I want to programatically set an Eclipse plugin action (button) such as this here: For example, if the user presses it, I do not want it to toggle off under certain conditions. This code here ...
0
votes
1answer
39 views

No source files when attempting “Import Plug-ins and Fragments” in Eclipse

Following this answer's suggestion, I attempted to use the "Import Plug-ins and Fragments" feature to import into my project other plugin's source code: But the fact is, it doesn't seem to show up ...
2
votes
1answer
88 views

Escape result of FileLocator.resolve(url)

The method FileLocator.resolve(url) can be used to translate an address bundleentry://something/somewhere/x.txt to a proper file URL for /mnt/foo/somewhere/x.txt. However, which is also documented at ...
0
votes
1answer
26 views

Calling pre/post script after Eclipse p2 upgrade?

Let's say, I have an application (a bunch of features) installed in Eclipse. Now, I have a new version of the p2 repository for that application and ready for the same Eclipse to be upgraded for the ...
2
votes
1answer
68 views

Use of ILaunchConfigurationMigrationDelegate

I do not understand how migration of Eclipse Launch Configrations (ILaunchConfiguration) works. In my dreams, I'd love to have the following: My plugin, version 1.0, is used to create a Launch ...
0
votes
0answers
44 views

How to create an aspectj plugin to intercept classes residing in other plugins

In brief: Would it be possible to have one AspectJ aspect intercepting calls to classes residing in several plugins? In this situation how to configure my Eclipse Juno to develop my aspects? I ...
0
votes
1answer
57 views

How to orient components in an eclipse plugin?

Given the default container given to me from an Eclipse View, I wish to orient an AWT frame and an SWT Label. I want the SWT Label to be on the top, and the AWT Frame to be directly below it. For some ...
0
votes
2answers
121 views

Add an SWT Widget onto an eclipse plug-in's view's

Given the following action bar, I want to be able to add any other SWT widget to it (such as a label). Given the actual API, I don't see how this is possible as it only allows adding IAction objects. ...
1
vote
1answer
147 views

How to use an animated GIF in Eclipse RCP ImageDescriptor

I want to use an animated GIF in an ImageDescriptor. I'm aware eclipse has other ways of animating gifs using manual threads that read the image as an input stream. However that won't work for the ...

1 2 3 4 5