rcp

Running Groovy Unit Tests from a Eclipse Plugin Fragment?

Hey there, i'm currently working on a Eclipse RCP Project. I have a Plugin Fragment where i store my Unit Tests. I like to store the Groovy Unit Tests there as well. But when i try to create a Groovy unit test, Eclipse doesn't let me, because the fragment is not a Groovy Project. Is there a way to run the the groovy tests inside the fr...

Which Eclipse version: Java, RCP or "Eclipse Classic"?

The following link states that "A Java or RCP version of Eclipse is recommended. For Eclipse 3.5, the "Eclipse Classic" version is recommended." http://developer.android.com/sdk/installing.html However, Eclipse 3.6 is available and as a total newbie I am not sure whether the recommendation for "Eclipse Classic" over RCP (or Java) still...

CLI for Eclipse RCP application

I am building an Eclipse RCP application and want to add a command line interface into one of the tabular views. What would be the best approach to accomplish this? ...

RCP Command with object argument

I want to call an RCP command in code, like this: IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); IHandlerService handlerService = (IHandlerService)window.getService(IHandlerService.class); handlerService.executeCommand(cmdID, null); With considerably more code, I can call the command with a str...

Java with EMF & RCP vs C#

We're thinking about switching technology for our future projects going from C++ to Java or C#. So naturally there's a big discussion going on right now what to choose. The problem is that none of us has industry experience with EMF or RCP, which would be quite nice to have if it fits our needs. so i wanted to ask you what you would pre...

Dynamically adding types to a jaxb context.

Hi, I have multiple plug-ins in my RCP-based project. I want to be able to define @XMLElements in one plug-in that can then be marshaled / un-marshaled from the core plugin. To do so, I report the classes that are serializable as soon as the plug-in is loaded. However, dynamically adding classes seems to be not supported by the JAXBCont...

Make Eclipse RCP Intro part of a perspective

Hi, 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 perspective, however, when I try to add our intro view to the perspective, it says that the view already exists in the layout. I have tried p...

How to use separate datbases for production and testing in an eclipse RCP app

I am writing an eclipse RCP app and I am trying to use a separate db for tests to prevent corrupting my production db. During the setup of the test db i need to execute an sql file to fill it with test data. Is there a way to tell the app to use a different db and execute a specific sql script (maybe via launch properties or maybe frag...

ClassNotFoundException when starting Maven 2 RCP application

Hi, I've started a very basic Eclipse (Helios) RCP application with the "Hello RCP" template. I enabled Maven dependency management and added Spring 3 to the POM. After that I created a view and added the following code to my view. @Override public void createPartControl(Composite parent) { RestTemplate restTemplate = new RestTempla...

Slow Buckminster plugin resolution

I am running a headless Buckminster build using ant that for some reason is taking 4+ hours to finish resolving all the plugins that need to be built. There are about 350 plugins that need to be built, all of which are already on the local filesystem and are provided in a rmap file as "local" providers. I have tried increasing the logg...

how to show up the perspective button without click?

I have two perspectives , but to see the second perspective , as you know have to click button 'open perspective'. Is there way that the second perspective button shown up automatically , when application start up? ...

How can I remember editors when Perspective change

I have two Perspectives and two editor part each. When preperspective changed to postperspective , the editor opend is closed . then changed again to preperspective , no editor can be recovered. How can I rememver the Editor Opend , even when changing perspective occured. and can I recover it again? ...

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 some plug-in to do this? Or should I use an external lincense tool like License3j or truelicense? ...

Eclipse RCP: Get rid of "reset perspective" message

In an RCP application, we dynamically load plugins and our applicaton can add new plugins. When we create a new plugin, we then load it with: newBundle = Activator.getDefault().getBundleContext().installBundle(location); newBundle.start(); This causes a confirmation dialog appears with the message "Changes to installed plug-ins ha...

How can I change the button that is in the view.

I have a toggle button that is on the Viewer![alt text][1] the problem is , when it turn on , How can recover the last status . like even though the default value is false , how to set it true programmatically. In the plugin.xml , the default status is true. ...

I have the exception as soon as shutting down my workbench

!SESSION 2010-10-05 15:59:54.026 ----------------------------------------------- eclipse.buildId=unknown java.version=1.6.0_20 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=ko_KR Framework arguments: -product JobSchedulerClient.product Command-line arguments: -product JobSchedulerClient.pro...

How to make installer for Eclipse RCP

I would like to create installer for Eclipse RCP application. What is the best way to do this? It is possible? Eclipse Platform Version: 3.6.1 ...

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 ...

Netbeans RCP vs Eclipse RCP

I would like to start a new project which will make extensive use of plugins. I know that both Eclipse and Netbeans have their respective Rich Client Platforms, both with their respective strengths and weaknesses. I would like some comments on which the Stack Overflow community prefers. Also, and most importantly, how easy it is with t...

Writing 3rd party plugins for closed-source Netbeans Platform Application

I have created a Netbeans Platform Application and deployed it (created installer / zip bundle etc.). I have also made provision for extension points by creating Interface modules in the application (is this the correct way?). Now my question is, how do I write modules to extend this application, without having to depend on the source o...