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
3
votes
2 answers

Customizing the progress view in Eclipse

I have an RCP application on Eclipse that makes quite a lot of use of jobs. This causes the Progress View to become cluttered at times and difficult to easily read. Is it possible to extend to progress view to filter or tab the running jobs by…
Andy Smith
  • 3,308
  • 4
  • 26
  • 34
3
votes
1 answer

How to build Junit5 tests w/ Maven Tycho

I want to introduce Junit5 Jupiter to an old RCP test fragment. We build our RCP features w/ Maven Tycho. Since version 1.2, Tycho is supposed to support JUnit5 tests. All I get is (when I run mvn clean…
ingo.mohr
  • 117
  • 1
  • 7
3
votes
1 answer

Constructing a JFace TableViewer with EditingSupport for a mathematical matrix

Our application (Eclipse RCP-based, using a JFace/SWT-based interface) needs to support editing of mathematical matrices. The matrices are always square and can be any size from 2x2 to 11x11. Additionally, buttons will be placed on the interface to…
James Cronen
  • 5,715
  • 2
  • 32
  • 52
3
votes
1 answer

Using variables in config.ini property OSGI.bundles

Config.ini file is having the property osgi.bundles which contains the list of plugins that needs to be started while launching my RCP. For…
Vikram Aruchamy
  • 163
  • 1
  • 11
3
votes
1 answer

Eclipse Neon and Oxygen setExtended GridLayout can't cast to FillLayout

I have a big plug-in eclipse Indigo RCP program. Trying to migrate to Oxygen and Java 8 (from 7) I get problems with all om my setExpanded(false) regarding GridLayouts. I get a response similar to ...GridLayout can not be casted to FillLayout. The…
Magnus_G
  • 49
  • 8
3
votes
2 answers

How do I add a customised popup for a Java RCP application which launches only when it has java 7 or higher versions(32-bit)?

Currently, I have an application which is built using Java RCP(Eclipse Mars). It can launch only if the system has JAVA 7 Or any other higher version(32-bit only). When trying to launch using JAVA 6 it throws up a popup.(See attached popup).[Some…
ghost
  • 53
  • 6
3
votes
2 answers

Eclipse plugin won't go from RESOLVED to ACTIVE

I have a Eclipse plugin Bundle I've created which won't go from the RESOLVED state to ACTIVE. I've tried opening the OSGI console to see why the bundle won't start but there doesn't appear to be any problems. If I type "start bundleid" then it…
joejag
  • 314
  • 1
  • 9
3
votes
0 answers

How to improve RCP application start times

Migrating our RCP application from Eclipse 3.7 to e4 resulted in significant startup time degradation. It went from 3 seconds on Eclipse 3.7 up to 17 seconds on latest 4.6.1 target platform. Two visible bottle necks are the activation of…
Dima
  • 4,068
  • 4
  • 38
  • 47
3
votes
1 answer

No repository found containing: org.eclipse.update.feature,org.eclipse.emf.ecore

I have upgraded eclipse 4.3 to eclipse 4.5. when I try to compile the same product with eclipse 4.5, I am getting a big list of errors. An error occurred while collecting items to be installed [java] [p2.director] No repository found containing:…
Aditya
  • 35
  • 5
3
votes
0 answers

RCP - Environmental Variables for the product.ini file?

I need a way to use relative paths in my product.ini file for our RCP application. It usually looks something like this (the variables are edited and do not work) -startup…
David Trevor
  • 794
  • 1
  • 7
  • 22
3
votes
2 answers

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 perspective, however, when I try to add our intro view to…
Chris
  • 31
  • 2
3
votes
1 answer

Dynamically adding types to a jaxb context

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…
Alexander Lex
  • 33
  • 1
  • 3
3
votes
0 answers

Include JRE by using Eclipse Product Configuration

I'm using Eclipse Mars(4.5.2) and already create a plugin project. I'm using "Eclipse product export wizard" to export the product to multiple platforms. So it's working now. please help me to include JRE folder when i export the product to multiple…
3
votes
1 answer

Unable to load library 'xxx.dll': Native library (win32-x86/xxx.dll) not found in resource path (JNA + DLL + eclipse rcp)

I'm using JNA in an eclipse RCP project. I'm following fragment style. fragment:` `Bundle-SymbolicName: a.b.c.d.win32.win32.x86` `Bundle-ClassPath: lib/jna-4.1.0.jar, . ` `Eclipse-PlatformFilter: (& (osgi.ws=win32) (osgi.os=win32)…
3
votes
0 answers

JAXB in RCP eclipse project

I've been trying to use JAXB binding to read xml files I have in java apps. So far, I've been able to do the following steps: generate .xsd for the .xml I have generate java classes using the jaxb-compiler.cmd (I'm running on windows) use the…
srdanz
  • 31
  • 2