Tagged Questions

12
votes
3answers
7k views

Eclipse RCP: Actions VS Commands

What are differences between Actions and Commands in the context of Eclipse RCP? I know that they both contribute to the menu entries, but which one is better? And why? Of all the online resources ...
8
votes
3answers
5k 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 ...
10
votes
1answer
3k views

What is the difference between plug-in, feature and product in eclipse rcp

What are the difference, what get's used for which purpose?
6
votes
2answers
3k 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 ...
1
vote
2answers
566 views

Removing a view from Eclipse Window -> Show views

We have an application in which some views only work when attached to certain perspectives. We want to remove those views from the Window -> Show View dialog so that users cannot add them to ...
0
votes
1answer
168 views

getting “no repository found at…” error when placing my plugin into Eclipse's dropins directory

i am using eclipse 3.5 to create a simple plugin bearing an extension point. i built it using headless pde build via ant. the plugin functions properly. i then proceeded to test its extension point by ...
1
vote
1answer
2k views

Global variables in Eclipse RCP

how do i solve this: I have usercredential informtion in my main RCP plugin. All other plugins should have that information as well. Preference Store is not possible, because also the presference ...
2
votes
2answers
251 views

How to determine which eclipse plugins are contributing to menus and toolbars and stop them

I am creating an RCP app which uses a host of third-party plugins. Some of these plugins contribute menus, menu items, and toolbar buttons that I do not wish to display. How can I determine which ...
2
votes
4answers
2k views

Eclipse RCP standalone export problem with Groovy scripts

I am trying to export a standalone RCP app using Eclipse 3.5.2. The app has a main pure Java plug-in, and a Java / Groovy plug-in that is used by the main plug-in. When I export the main RCP plug-in ...
2
votes
2answers
2k views

Is it possible to automate the creation of a inno setup package with ant?

I am creating an Eclipse RCP application. I am following Joel's advice in the following article "Daily Builds are your friend": http://www.joelonsoftware.com/articles/fog0000000023.html So, I've ...
7
votes
4answers
5k views

Prevent SWT scrolledComposite from eating part of it's children

What did I do wrong? Here is an excerpt from my code: public void createPartControl(Composite parent) { parent.setLayout(new FillLayout()); ScrolledComposite scrollBox = new ...
3
votes
1answer
3k views

Eclipse RCP application - multi-window design for multiple monitors

Question about Eclipse RCP and whole perspective/view/editor design - what is the best way to create application which will display multiple windows on multiple monitors? Tutorials and book I've seen ...
3
votes
5answers
5k views

Eclipse RCP: Making use of configuration directory

My Eclipse RCP application requires a configuration file that contains some information to connect to a remote database. Where is the best location to store this configuration file? Can I use the ...
2
votes
1answer
1k views

Eclipse RCP app: How to disable specific extenstions?

I'm using Eclipse HELIOS to code a Rich Client app. The following entries are added automatically to my APP "PERSPECTIVES MENU": "Java, Java Browsing, Java Type Hierarchy, Team Synchronizing". I need ...
2
votes
4answers
7k views

Eclipse RCP application - Create a window programatically

In an RCP application, how I can programtically define and open a new window? I want to open several window - each window show different data. How can I set different input for each window? I want ...
2
votes
7answers
2k views

Which is the best RCP platform

I am building a desktop application. Our analysis says it would be better built with a RCP. Should I use the eclipse or netbeans platform to build my application . Some of the factors to consider are ...
1
vote
2answers
5k views

Eclipse RCP Toolbar buttons with the Eclipse Look

In Eclipse, its easy to specify buttons for your toolbar using the ActionSets extension point. However, when I need to specify some items programmatically, I can't get the same look. I don't believe ...
0
votes
0answers
64 views

Little example for nested wizards in eclipse rcp?

I would like to implement a nested wizards, for example: wizard A -> startWizard wizard A delegates to Wizard B or Wizard C (user input controls it) I see on the eclipse api a class called ...
0
votes
2answers
281 views

Eclipse RCP - project selected (Package Explorer)

How do I retrieve the name and path of the project selected? (Package Explorer) example: c:\project\test\projectName someone has some code that explains how to complete I get the project name or ...
4
votes
6answers
848 views

I would like a recommendation for a book on Eclipse's Rich Client Platform (RCP)

I have read through several reviews on Amazon and some books seem outdated. I am currently using MyEclipse 6.5 which is using Eclipse 3.3. I'm interested in hearing from people that have experience ...
3
votes
2answers
504 views

Make Eclipse RCP Intro part of a perspective

For a product we are creating, we want to be able to have the welcome screen display in a perspective (which we are calling "Start Here"). The intro is the only thing that needs to be in that ...
3
votes
3answers
859 views

What is the preferred way to load a DLL on an Eclipse RCP plugin?

I have an Eclipse RCP plugin that requires a DLL. What is the recommended best practice to add the DLL reference to the MANIFEST? Where should the DLL be located, what is the recommended directory ...
2
votes
4answers
553 views

Test Framework for Eclipse RCP Application

I am new to Eclipse RCP and I'm looking for an open source framework to test my RCP Application (Especially the gui). I want to run this tests as unit tests. Can you suggest some good frameworks with ...
2
votes
3answers
495 views

A tutorial on adding search to an Eclipse RCP program

Could some one point me to a tutorial on how to work with the Eclipse search plug-in with custom views in an Eclipse RCP program. I have tried searching google for one, but I have found to have the ...
2
votes
3answers
590 views

Set Size of JFace Wizard

I am building an Eclipse RCP application and am having trouble on settings the size of a JFace Wizard.
2
votes
1answer
998 views

Using customBuildCallbacks.xml in an Eclipse RCP headless build

I am trying to add some custom build steps to my headless build process for an Eclipse RCP application. I understand that the recommended way is to provide a customBuildCallbacks.xml file on the ...
1
vote
2answers
223 views

ECLIPSE RCP - lightweight decorator with objectState enablement

How use this functionality that org.eclipse.ui.decorators provides? Lets say I have some object in TreeViewer and want to enable decorator only when object has "dirty" property set to true? Do I have ...
1
vote
1answer
246 views

Best book on Eclipse platform [closed]

I want to learn developing with Eclipse platform. I'm considering buying one of those 2 books: Eclipse Rich Client Platform 2nd Edition Eclipse Plug-ins 3rd Edition Which one is better? Is there ...
1
vote
4answers
400 views

Hide instead of dispose viewpart when x is clicked

I have a viewpart with closable set to true. The user clicks the x. I want to hide the viewpart rather then close it. how can this be done?
1
vote
1answer
556 views

Use org.eclipse cut/copy/paste in custom RCP aplication

I am developing a RCP application and I need cut/copy/paste in this app. As there are already commands which are delivered by eclipse (org.eclipse.ui.edit.copy, ...) I want to use them (I already ...
1
vote
2answers
575 views

How protect/license an Eclipse RCP feature/product?

How can I protect an Eclipse RCP based product? What I would like to do is ask for a licence key to the user and avoid adding more plugins or changing plugins that aren't 'signed by me'. Is there ...
1
vote
2answers
1k views

Printing with an Eclipse RCP program

I am looking for a good, standard way to generate "output" in my RCP programm and print it. This should work as it works on Windows, Mac OS and Linux with the standard print dialog. I am aware of the ...
1
vote
1answer
1k views

The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved

When building my Eclipse RCP Application, I get the following error. The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. It is indirectly referenced from required .class ...
0
votes
1answer
37 views

try to avoid multiple instances of eclipse editor opening same file

I registered a custom editor with eclipse extension point "org.eclipse.ui.editors" as follows. <extension point="org.eclipse.ui.editors"> <editor ...
0
votes
1answer
140 views

Simple WYSIWYG HTML editpart for eclipse rcp?

I am looking for a Eclipse plugin which I could use to provide a WYSIWYG HTML editor in an Eclipse RCP application. I need nothing fancy, something with similar functionality to the editor I am using ...
0
votes
1answer
111 views

Location for rcp eclipse application

How do i get the location where an rcp eclipse exported application is running ? thank you
0
votes
2answers
46 views

Please recommend me the way that I can study about RCP

I am in the company , and make application in rcp , but the problem is I can not find the much of information of it . How can I solve this . Please help me
0
votes
2answers
399 views

Eclipselink read complex object model in an ordered way

I need to read a complex model in an ordered way with eclipselink. The order is mandantory because it is a huge database and I want to have an output of a small portion of the database in a jface ...