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

Run and Search appear in RCP Menubar

I suddenly have "Run" and "Search" in the menubar of my RCP application. Is there anyway to remove them?
Ohanes Dadian
  • 625
  • 1
  • 9
  • 17
6
votes
2 answers

JUnit Testing for Eclipse RCP. How to do it?

I would like to write JUnit test for my Eclipse RCP while I continue developing the code. When starting the application the different plugins initialize variables of various plugins/classes (mostly within their start methods) which are needed for…
Markus
  • 1,452
  • 2
  • 21
  • 47
6
votes
1 answer

Java close listener for ViewPart

I'm using eclipse RCP with a view and I want to print something on the console when the application is closed. This is what I have done, but It's not working; public void createPartControl(final Composite parent){ …
Zbarcea Christian
  • 9,367
  • 22
  • 84
  • 137
6
votes
3 answers

How can I remote debug my rcp application?

Because my RCP eclipse application fails when run outside of eclipse, but works correctly when running inside of eclipse, I am attempting to use eclipse to remotely debug my application as it's running outside of the eclipse environment. I am using…
JasonK
  • 361
  • 5
  • 15
6
votes
1 answer

How to customize eclipse perspective programmatically?

I want to make the same behavior I got when I do a right click on a perspective and choose customize to get this window I want to customize menus and toolbars for my perspective only programmatically. Actually, I want to remove most menus and…
becks
  • 2,656
  • 8
  • 35
  • 64
6
votes
4 answers

Eclipse 3.5 and Java 7

Is there any way where I can increase the Java Compiler Compliance level of Eclipse 3.5 to 1.7. (i.e.) By adding a plugin/add-on. Since by default this will not support the JDK 1.7 compliance. We have a constraint in Eclipse upgrade, since it's an…
Ajai Gopal
  • 189
  • 4
  • 12
6
votes
2 answers

Failed to write core dump. Minidumps are not enabled by default on client versions of Windows

I was working on Eclipse RCP and I got this error A fatal error has been detected by the Java Runtime Environment: EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fef54b88ee, pid=3192, tid=5324 JRE version: 7.0_02-b13 Java VM: Java…
Gaurav Singh
  • 71
  • 1
  • 5
5
votes
3 answers

Launch RCP application from main()

I know it's possible to export my rcp application, create a .exe file and run it with the command "Runtime.getRuntime().exec()" but, I'd like to launch my rcp application from the main method of a java class without creating and call the exe. is it…
Silvio
  • 123
  • 1
  • 11
5
votes
6 answers

How do I detect that a SWT dialog has been opened and is visible?

I have an SWT WizardDialog with a number of pages. When this dialog first opens I have to do a check for some conditions and if those conditions are met I need to show a popup over the freshly opened dialog. So I have this code to listen for…
locka
  • 5,809
  • 3
  • 33
  • 38
5
votes
1 answer

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 always pack RCP/SWT design into views inside…
tomash
  • 12,742
  • 15
  • 64
  • 81
5
votes
0 answers

How to create an installer/.exe/.msi for RCP Product?

I want to create an RCP application as an exe or msi file. I have exported the application as .product as below. But my client wants it as an .exe or .msi file. Answers in stackoverflow suggested to use "EclipseNSIS" to create executable. But…
Kutty
  • 712
  • 1
  • 5
  • 22
5
votes
1 answer

How to achieve eclipse Progress bar with Details button like eclipse workspace job

I am working on Eclipse RCP application, I want to achieve the eclipse workspace job with a Dialog with the buttons like "Run in Background", "Cancel" and "Details". I tried all the options but all my efforts did not bear fruit. However I am able to…
Sambit
  • 7,625
  • 7
  • 34
  • 65
5
votes
5 answers

How to set the color of an Eclipse/RCP decorator?

I added a decorator in a Eclipse/RCP application to my tree viewer items by plugin.xml:
uı6ʎɹnɯ ꞁəıuɐp
  • 3,431
  • 3
  • 40
  • 49
5
votes
2 answers

Using Netbeans RCP with Google Guice

I would like to use Google Guice (2.0 or 3.0, does not matter) for my Netbeans Platform Project. My Project has several Netbeans Modules. I managed to use Guice in a single Netbeans Module, but now I want to Inject a Dependency from one NBModule to…
Dominik Obermaier
  • 5,610
  • 4
  • 34
  • 45
5
votes
2 answers

How can i export eclipse rcp product without packaging dependencies into plugins folder

I need to export an eclipse RCP Application. While exporting, all the plugins that are added as dependencies are packaged into the product/plugins directory as show in the image. Is it possible to export the eclipse product without packaging some…
Vikram Aruchamy
  • 163
  • 1
  • 11