Tagged Questions
The Eclipse Rich Client Platform is a generic Java platform for running applications.
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 ?
13
votes
2answers
1k views
MouseDown events are not delivered until MouseUp when a Drag Source is present
I have a mouse listener. It has some code to respond to mouseUp and mouseDown events. This works correctly.
However, as soon as I add a DragSource, my mouseDown event is no longer delivered -- until ...
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 ...
9
votes
3answers
1k views
SWT/JFace or Eclipse RCP?
Which are the reasons to choose the Eclipse Rich Client Platform as the base of my application, instead of just using SWT/JFace?
8
votes
4answers
3k views
Use maven2 for build-automation and continuous integration of an eclipse rcp project?
My company starts a new project next week. We have planned to develop the application with eclipse rcp. The build process should be fully automated, so we're prepared to set up a continuous ...
7
votes
2answers
1k views
What are the pros and cons in C++ Qt vs Eclipse RCP for cross-platform GUI development?
I am going to develop a new GUI for an existing C++ application. The application works on Windows and Linux, and the communication with GUI is through client/server.
What are the pros and cons ...
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
1answer
209 views
Anyone have experience in building an Eclipse RCP application with Gradle?
Does anyone have experience in building an application based on Eclipse RCP with Gradle? I'd like especially to know:
How reasonable is it to build Eclipse RCP plugins and products with Gradle?
Are ...
6
votes
1answer
1k views
Eclipse RCP: How to download delta pack from software site in the Target Definition file?
I'm using this technique to create a target platform for my Eclipse RCP projects: http://www.modumind.com/2009/09/01/creating-an-eclipse-rcp-target-platform/
The RCP SDK is downloaded directly using ...
6
votes
2answers
290 views
Launch an action in Eclipse RCP at startup
I have an RCP plug-in and I have configured the help system to run within this plug-in. I can access it from the Help menu.
Now I want to launch the "Dynamic Help" action by default at startup. How ...
6
votes
4answers
1k views
SWT and blinking
I need the ability to have a blinking (red, maybe more colors) background for rows in a TableViewer/TreeViewer. What are the best options?
There may be more than one row blinking, the blinking MUST ...
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
2answers
346 views
Simple “check for update” library in java
I'm using Eclipse RCP, but, mainly because i have total control of the UI (removed all contributions, made Preferences from scratch, etc) i just cannot accept the complexity and demand of the included ...
5
votes
1answer
315 views
What is the relationship between AWT, SWT, Swing, SAF/JSR-296, JFace, the NetBeans Platform and the Eclipse RCP
I am looking for something that puts this alphabet soup into perspective. It would be nice if it were light on the politics of the differences and tries to illuminate the similarities (if there are ...
5
votes
4answers
1k views
Eclipse/RCP (SWT) vs Qt Creator (Qt) as a framework for plug-in development?
I have known many good applications (including UG Team Center, IBM Lotus Expeditor etc.,) developed over Eclipse (RCP Framework). Of late, i find some application developed over Qt Creator exploiting ...
5
votes
1answer
389 views
How to do keybinding in eclipse rcp?
How to do keybinding in eclipse RCP?
I mean how to use key sequences in your GUI...like Ctrl + something or Alt + something.....?
5
votes
2answers
3k views
How to communicate between views in Eclipse RCP?
In Eclipse RCP, I am creating views for the Perspective using IPageLayout.addView(...)
But this way I don't have a reference to the view. Therefore I don't know how I can tell ViewA to update ViewB.
...
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
5answers
2k views
Can't get SWT Display on Mac OS X
I'm running Mac OS X Snow Leopard and wan't to access the Display from the activator in an OSGi bundle.
Below is the start method for my activator:
@Override
public void start(BundleContext ...
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
1answer
977 views
Dynamic language switching in an Eclipse RCP application
I am working on an Eclipse RCP application with localization. A user should be able to change the language used in the application on the fly. A restart of the application should not take place during ...
5
votes
2answers
664 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 ...
5
votes
9answers
2k views
RIA vs. RCP
I'm on a project where we try to build a GUI replacement for an old application. Before we really implement the functionality we've started prototyping with Eclipse RCP (Rich Client Platform) and GWT ...
5
votes
3answers
4k views
Proper way to bind a radio button group using JFace data binding
I was wondering if anyone could explain to me how I could properly bind a group of radio buttons to a boolean variable in the model using JFace data binding.
Let me explain the situation first: I've ...
4
votes
1answer
139 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
0answers
93 views
Required help with the Eclipse Exception [closed]
Possible Duplicate:
fatal error running SWT app from Openoffice
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at ...
4
votes
1answer
248 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
1answer
96 views
SWT Text widget: how to insert own MenuItems into the default context menu?
The default context menu for the org.eclipse.swt.widgets.Text class is quite a rich thing, packed with features that the user has come to depend on ...
However, as soon as I assign my own context ...
4
votes
1answer
120 views
TabItem in java
I have used two tabFolders tabFolder_1 and tabFolder_2 . Each tabFolders have two tabItems tabItem_1,tabItem_2 in tabFolder_1 and tabItem_3 and tabItem_4 in tabFolder_2. Now what i'm trying to do is ...
4
votes
2answers
598 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
2answers
356 views
Complete example for Eclipse RCP 3.6.2/P2/Junit tests
Does anyone know of a good complete example (source, scripts, jobs)
that covers all the following?
building an Eclipse RCP product with many features
generating a P2 repository
running JUnit tests
...
4
votes
3answers
518 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
669 views
Eclipse RCP: Parallel jobs presented in one progress dialog?
I would like to show progress of multiple Jobs running in parallel, but in only one progress dialog.
But each call to Job.setUser() seems to result in a new progress dialog.
I've tried:
Setting a ...
4
votes
1answer
213 views
Best practice to use and distribute 3rd party jars in Eclipse plugins
What is best practice to use and distribute 3rd party jars?
Approach one:
Keep these jars in lib folder with in the plugin (or outside)
Add there reference in build path for compiler but exclude ...
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
418 views
Learning Eclipse RCP and SWT/JFace
I am new to to Eclipse RCP and SWT/JFace. I intend to purchase the Second Edition of the well known Eclipse Rich Client Platform book by Jeff McAffer, Jean-Michel Lemieux, Chris Aniszczyk. I wish to ...
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
1answer
179 views
How to determine that a JFace or SWT Dialog is currently open?
In our RCP application, we need to resort to using a global key event handler (via Display.addFilter()) for more advanced key event handling/routing irrespective of current focus. We need to be able ...
4
votes
1answer
362 views
P2 Update of RCP based application failes
I trying to update an Eclipse-RCP-3.5 based application by an P2 update-site. Application contains two features.
Product is build by Eclipse Buckminster. Creation of the P2 update site is part of the ...
4
votes
5answers
281 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
194 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
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
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, ...