Questions tagged [rcp]

RCP stands for Rich Client Platform, and is software that provides a platform for application developers to build on. It may also refer to the "remote copy" command in Unix. Use the eclipse-rcp tag for questions about Eclipse RCP.

RCP stands for Rich Client Platform, which is software that provides a platform for application developers to build on. This speeds production, allowing proven framework to be used rather than re-implemented. An example is the Eclipse RCP.

http://wiki.eclipse.org/index.php/Rich_Client_Platform

It may also refer to the "remote copy" command in Unix.

1706 questions
5
votes
4 answers

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 word "search" in your search phrase you might as…
Mike
  • 51
  • 1
  • 3
5
votes
2 answers

Eclipse RCP plugin error - Cannot resolve module

When I try to run a eclipse product like this: I get about 100 errors type "Could not resolve module XXXX". For example, a partial log view: !ENTRY org.eclipse.compare 4 0 2017-07-14 11:03:53.679 !MESSAGE FrameworkEvent ERROR !STACK…
5
votes
1 answer

Eclipse RCP app: How to disable specific extensions?

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 to get rid of them. i'm using the extension…
marcolopes
  • 9,232
  • 14
  • 54
  • 65
5
votes
1 answer

RCPTT running Java code from the script

I am looking for some way to run some Java code directly from the test script I am writing for our RCP application. I need to set up a multi-cast socket in the test before clicking a particular button in the application. Something like…
BrendanM
  • 383
  • 3
  • 14
5
votes
3 answers

Hibernate 5 + Eclipse RCP + SQLite 3 - Unable to resolve name as strategy org.hibernate.dialect.Dialect

I have Eclipse RCP Application. JARs with hibernate are in another plugin which is included in the main project in MANIFEST.MF. I try to establish simple connection Hibernate -> SQLite DB using code: try { Configuration lConf = new…
Bartek Szczypien
  • 333
  • 4
  • 17
5
votes
3 answers

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…
Android Eve
  • 14,864
  • 26
  • 71
  • 96
5
votes
3 answers

Reference an anonymous class?

I am developing a plugin for an RCP application. Within the plugin.xml, I need to register certain classes at a given extension point. One of these classes is an anonymous (?) class defined like this: package de.me.mypackage; import…
Antje Janosch
  • 1,154
  • 5
  • 19
  • 37
5
votes
1 answer

Eclipse RCP e4 using cached version of Application.e4xmi file

So I'm writing e4 RCP application for my studies. My problem is that, as I change the Application.e4xmi file - I basically add / remove some part (View) - the changes are not reflected in the application later run ! It's totally as eclipse (IDE)…
user1913596
  • 469
  • 6
  • 16
5
votes
1 answer

Including a file in the Eclipse RCP bundle working directory

I want to include a file (text, image, etc) in the root directory of an Eclipse plugin. When I run the program using a test main method, I can find the file in the working directory. But when I run the plugin as an Eclipse application, the working…
Aswin
  • 541
  • 4
  • 13
5
votes
2 answers

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, like: 1) change language (click here) 2) set up…
Raven
  • 561
  • 6
  • 19
5
votes
7 answers

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 Performance Look and Feel Popularity among…
Midhat
  • 17,454
  • 22
  • 87
  • 114
5
votes
1 answer

Vertical scroll bar for SWT list widget

Following is my code: Group leftGroup = new Group(parent, SWT.NONE); leftListWidget = new org.eclipse.swt.widgets.List(leftGroup, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI); leftListWidget.setLayoutData(new…
Manglesh
  • 520
  • 1
  • 13
  • 29
5
votes
1 answer

Restricting permissions of threads that execute third party software

I'm developing an Eclipse based application capable of executing third party components (not eclipse-plugin). Each component has a custom descriptor that lists permissions (with corresponding motivation). In this way the end user can decide to…
5
votes
3 answers

BIRT How to make embedded image chart in html report?

I'm trying to integrate BIRT (3.7) with my RCP application. When generating a report chart converted into a image (PNG,SVG, e.t). I want during generation html report make ​​a chart (image) embedded How to make embedded image chart in html…
archik
  • 455
  • 1
  • 5
  • 22
4
votes
4 answers

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 (RCP) other than Eclipse as an IDE which is…
bhadra
  • 12,887
  • 10
  • 54
  • 47