Tagged Questions

63
votes
5answers
12k views

What does $NON-NLS-1$ mean?

In Eclipse source code, I've found some '$NON-NLS-1$' in comments used like that : private String toolTip = ""; //$NON-NLS-1$ What does that mean ?
12
votes
5answers
2k views

Is it currently possible to build Eclipse Plugins by Maven AND have nice IDE Integration?

I'm currently evaluating maven to improve our build process. The building and creating of normal jar files works so far, although I'm not entirely happy with the Maven IDE. I'm now at that point, ...
11
votes
1answer
3k views

Change Menu Items Programmatically From Eclipse Plugin

I would like to be able to completely remove menu items upon startup of my eclipse plugin application. What I want to do is be able to add these menu items later depending on business logic based off ...
7
votes
4answers
7k views

eclipse view classes dependency graph plugin?

is there any plugins i can use for eclipse that will show graphical view of classes dependencies ?
7
votes
7answers
2k views

How to write eclipse rcp applications with scala?

The Scala Eclipse plugin page says: * Support for Eclipse plugin and OSGi development including hyperlinking to Scala source from plugin.xml and manifest files. How does this support work? There's no ...
7
votes
6answers
2k views

Starting working with Eclipse RCP

I'm going to start maintaining an Eclipse RCP application for my current employer soon. What are your experiences with this platform? What are the pros, what are the cons, what are the caveats that I ...
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
2answers
2k views

How to get the selected node in the package explorer from an Eclipse plugin

I'm writing an Eclipse command plugin and want to retrieve the currently selected node in the package explorer view. I want to be able to get the absolute filepath, where the selected node resides on ...
5
votes
1answer
229 views

Is there a styleguide for developing SWT applications?

I'm not a proficient GUI developer, and I have no talent for design. Is there a comprehensive style guide for developing SWT applications? I'm especially interested in standards for developing ...
5
votes
2answers
356 views

Two Eclispse projects -> One Eclipse Plug-in

Background I'm a developer of the Vrapper project. Vrapper contains of 2 major parts Vim-emulation library (vrapper.core) Eclipse part that makes a good use of it We want vrapper.core to be ...
5
votes
4answers
3k views

Eclipse Preference store persistance

I have a multiple user/location RCP application that currently utilizes several user configurable options. Some preferences are for specific to the station, some are specific to the user. The ...
5
votes
2answers
665 views

Eclipse RCP: How to access internal classes of plugins?

I want to use the default XML editor (org.eclipse.wst.xml.ui) of Eclipse in an RCP application. I need to read the DOM of the xml file currently open. The plugin doesn't offer any extension point, so ...
4
votes
1answer
140 views

Clojure classpath issue within an Eclipse plugin

(I'm aware this is related to How can I embed Clojure in an RCP application, but that thread is old and my setup is somewhat different) I'm using Eclipse 3.7.1 and for days now have been trying to ...
4
votes
1answer
253 views

How to bundle Webkit into Eclipse?

Eclipse 3.7 (Indigo) now allows using Webkit as an underlying renderer for the SWT browser component. Nevertheless, runtime requirements say that Safari must be installed on the target machine. Is ...
4
votes
2answers
602 views

Override Eclipse File > Save Action

I am trying to override the Eclipse File > Save menu action to add some functionality. I have tried the following things a) Create a new action and add it to the global action handler ...
4
votes
3answers
519 views

Eclipse OSGI config: relative paths and/or @config.dir-like substitutions?

In my RCP app, I would like to point a property (osgi.java.profile) to a file, and would prefer using paths relative to my installation and config dir. Is there a definitive spec on what kind of ...
4
votes
2answers
709 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
103 views

Eclipse: Storing info in .project file

I'm trying to associate information with projects (certain properties). I tried using the persistence store (getPersistentProperty() and setPersistentProperty()). The problem with that is that when I ...
4
votes
5answers
283 views

Need help to begin with Eclipse RCP

Hey guys. I am just a beginner in eclipse rcp I'm feeling it hard to understand the concepts. Infact I struggling to create a button, somebody pls give a good suggestion as to how to start with rcp.
4
votes
1answer
277 views

How to combine Eclipse Databinding and UndoableOperations?

in my RCP - Project i'm using eclipse databinding to connect the ui with the backend. I want every change in an open editor to be undoable. My Domainmodell and UI are seperated in two different ...
4
votes
2answers
195 views

“This plug-in will make contributions to the UI” option - behavior and explanation

Does the option "This plug-in will make contributions to the UI" essentially get ignored if the previous option "Generate an activator, a Java class that controls the plug-in's life cycle" is NOT ...
4
votes
3answers
133 views

Positioning new editors side by side

I'm working on an eclipse rcp application and want to avoid this effect when opening a new editor: http://www.fotos-hochladen.net/stackededitorsfcpt3zoq.png and want to achieve this effect ...
4
votes
2answers
1k views

Eclipse Intro / Welcome page

is it possible to have links on the welcome page which point to defined commands and for example, launch an dialog? I am thinking of having a welcome page, pointing out the steps what to do first, ...
4
votes
4answers
488 views

Developing Eclipse plugins without Java

Is it possible to create Eclipse plugins/program Eclipse RCP apps without Java? (preferably in Jython)
4
votes
1answer
158 views

Eclipse documentation

I write application in Java(SWT) and I want to add documentation like in Eclipse application. How to do it? Is it exist tools for this? Documentation window in Eclipse:
4
votes
2answers
2k views

Eclipse RCP: Where should I keep my model objects and how do they talk to the views?

In Eclipse RCP way of doing things, where should I keep my model objects? And when they are loaded or changed, how should they talk to the views? I am attempting to port my existing application to ...
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
2answers
82 views

Java: how to detect the current java runtime is a JRE or JDK?

I got a Java application, I want to provide user ability to compile Java source code (Using JavaCompiler interface) If the user run the application on a JRE, my application should tell user that the ...
3
votes
1answer
48 views

Loading a VIEW from the Welcome Page by clicking in an image in Eclipse Java Desktop Application

In the Welcome Page of my Java Eclipse application i have kept different images. For this i have used the code in the .xhtml file which is as follows: <div class="icon"> <img ...
3
votes
2answers
254 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 ...
3
votes
2answers
739 views

How to create new Eclipse RCP project using maven2?

How to create new Eclipse RCP project using maven2 (preferably m2eclipse)? I read that there's plug-in for Maven that have idea about Eclipse. (Maven Eclipse Plugin) And then it looks like I need to ...
3
votes
2answers
399 views

Eclipse marker is Invisible

I am facing a strange problem while adding custom eclipse marker. The scenario is that while adding marker, when a resource(To which I need to add marker) is open then Marker icon is visible. But if ...
3
votes
1answer
1k views

How to create an Eclipse RCP application re-using some “Eclipse IDE plugins”?

How can I create a RCP application, which looks exactly like the Eclipse IDE with all menus, views, dialogs...? Here is one example: ...
3
votes
1answer
416 views

Eclipse RCP File Browser in ViewPart or Editor?

I am implementing a file browser, in Eclipse RCP, using a TreeViewer. Would it be best to put it in an Editor or ViewPart. I ask because, I need to be able to pass the root path for the browser and ...
3
votes
1answer
433 views

Plugin product VS Feature product

In the context of an RCP application I am wondering if I should base my product on plugins or on features. The main difference I can see for now is about the content of the exported application. ...
3
votes
3answers
207 views

When to choose “Generate an activator…” when creating a new Eclipse plugin project

There are lots of Eclipse RCP tutorials that begin with the obvious first step: "Create a new plugin project..." It seems that approx. 70% of them specify checking the "Generate an activator, a Java ...
3
votes
2answers
2k views

Fast views in eclipse rcp application

How to add a fast view to my eclipse rcp applicatio?
3
votes
2answers
163 views

Eclipse plugin development for Eclipse

How do I start to develop a plugin for Eclipse? I need a tool which isn't out there yet for my further development... so my main concerns are: How to add a perspective? How to add menu items? How to ...
3
votes
2answers
129 views

Eclipse warning: “<methodName> has non-API return type <parameterizedType>”

My co-worker and I have come across this warning message a couple times recently. For the below code: package com.mycompany.product.data; import com.mycompany.product.dao.GenericDAO; public ...
3
votes
3answers
3k views

Adding a filter to the Project Explorer in Eclipse

I want to add a new filter to the Project Explorer, to hide from the user some projects that are created automatically in an Eclipse RCP Application. So far I've found two extension points: ...
3
votes
2answers
428 views

selectionChanged() of IActionDelegate in not getting invoked

I have an action class which I would like to enable depending on the file extension. I have written this logic in the selectionChanged() of the action class. But when I start my eclipse, and click on ...
3
votes
2answers
749 views

How do I stop an Eclipse Editor from closing in an RCP

I am working on an Eclipse based RCP. We have a need to prevent one of the opened editors from being closed by the user. The desired behavior is: the user clicks the X in the editor window or ...
3
votes
3answers
2k views

Removing popUpMenus from CNF (Common Navigator Framework) in Eclipse

I have been partially successful at removing almost all the popUp menus from the Commons Navigator Framework simply by configuring the plugin.xml file. There are 2 menus that refuse to go: ...
3
votes
3answers
1k views

Force Look/Feel in SWT

Hopefully no one has asked this question - didn't see it, but I apologize if it's a duplicate. Anyway, I'm building some plug-ins with Eclipse RCP and am using SWT for my UI. I have a Composite that ...
3
votes
1answer
302 views

Using Eclipse with large workspaces

Our current product is based on Eclipse RCP. We are starting to have problems when we try to have our whole code base inside one eclipse workspace and we were wondering what others were doing. ...
3
votes
4answers
1k views

Success stories of Eclipse as an application framework (RCP)

I keep reading about Eclipse as an application framework (i.e. about Eclipse Rich Client Platform). I am unable to find comprehensive list of success stories of Eclipse as an application framework ...
3
votes
3answers
976 views

Extending Eclipse's JavaEditor (to act like Vim/change KeyListener)

Introduction a.k.a. what do I intend to do feel free to skip this part, no real information is comprised in here Because of the lack of a good, free (as in speech) vim-Mode for the otherwise ...
3
votes
2answers
929 views

What is the best way to learn Eclipse RCP? Does it feel different to only me?

I am used to structural programming (eg:C), OO programming(eg:Java), Scripting(eg:Javascript), Web (eg:HTML,JSP,Servlets,CSS) etc. Now, when I am getting started with Eclipse RCP plugin development, ...
3
votes
2answers
845 views

Layout problems by FieldEditorPreferencePage

I have following problems with layout settings in the FieldEditorPreferencePage. My code is something like that: public void createFieldEditors () { Group pv = new ...
2
votes
1answer
63 views

Does “including all environments” with the RCP SDK fully replace adding a Delta Pack to the target platform?

I'm building an Eclipse RCP application, and am in the process of setting up the target platform. In "Eclipse Rich Client Platform" 2nd edition it is noted that one should uncheck the "include ...

1 2 3 4 5 8