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
0
votes
1 answer

Eclipse RCP 4.x: org.eclipse.update.reconcile is set to false on export

I recently moved from eclipse 3.x to 4.x. In the properties section of my product file I'm setting the following setting: org.eclipse.update.reconcile = true When exporting the application the config file holds the…
Markus
  • 1,452
  • 2
  • 21
  • 47
0
votes
0 answers

how to align message and icon in messagedialog?

private void ErrMsg( final String message ) { Shell shell = new Shell(Display.getDefault(), SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL); final MessageDialog dialog = new MessageDialog(shell, "Hello", null, "warning message…
0
votes
0 answers

How do i change command's name from toolbar programmatically in rcp?

I am creating a command programmaticaly: final Command commandAdd = commandService.getCommand( "editor.commands.macro.add1"); commandAdd.define( "Add", "Add Macro", commandService .getCategory( "editor.category.macrogroup" )…
Cata
  • 21
  • 2
0
votes
1 answer

Can't get SWT Browser to work in standalone RCP app on CentOS

My RCP app running in CentOS 6.7 uses the SWT Browser. It works properly when launching the app from within eclipse, but when I run it as a standalone app, the Browser cannot be instantiated, and a SWT Exception with message "No more handles" is…
MidnightJava
  • 1,927
  • 2
  • 18
  • 38
0
votes
0 answers

eclipse rcp ViewPart restores / closes very slowly

I have a view which is shown upon request but opening multiple instance is not allowed. It has got a tree viewer and 2 table viewers. Upon selection of a tree item there will be some relevant data displayed on respective table viewers. I am seeing…
prakashjv
  • 329
  • 2
  • 8
  • 16
0
votes
1 answer

RCP application cannot find ModelCleanupAddon class

I have RCP application based on Luna release. After migrating to Luna 4.4.2 relase, I observe the following error !ENTRY org.eclipse.e4.ui.workbench 4 0 2015-08-27 16:59:58.081 !MESSAGE Unable to load class…
Alexander
  • 342
  • 4
  • 14
0
votes
1 answer

How to edit a tree node in SWT

I am creating a RCP application which will display a tree structure. I used the following code for this purpose. But, I need to make the nodes editable. How to do that? Please find the below code which I have written. public class TreeView extends…
Srijani Ghosh
  • 3,935
  • 7
  • 37
  • 68
0
votes
0 answers

How to get drop event in Eclipse RCP tableview cell

I am new to eclipse rcp and i was creating a table and a tree for drag and drop. Tree will have list of nodes which can be drag and drop in table particular cell. Drag and Drop does work fine but i am not able to drop the node text in particular…
mannu4u
  • 272
  • 3
  • 10
0
votes
1 answer

Cannot reduce size of RCP view when migrated to Eclipse 4

I'm currently working on migrating a set of eclipse RCP applications from 3.6 to 4.2. I'm struggling with an issue with RCP perspectives that view height cannot be reduced below a certain size (looks like 10% from the window height). The code works…
Ind
  • 3
  • 1
0
votes
1 answer

Perspective not loading in RCP when tried more than one

I am creating a RCP application. I have a view class NewView. public class NewView extends ViewPart { private DataBindingContext m_bindingContext; public static final String ID = "com.app.Editor.newView"; SaveNewFileBean bean = new…
Srijani Ghosh
  • 3,935
  • 7
  • 37
  • 68
0
votes
0 answers

jdk change to 1.8_04, rcp application crash when use javafx

Before my rcp application still use jdk7, every thing is fine, but when change to jdk8, execute a javafx class, the application directly crash. EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000000704d6e04, pid=14276, tid=13684 try to add…
neal
  • 1
  • 1
0
votes
1 answer

How to read data from binding bean?

I am trying to make a simple editor using Eclipse RCP. Below is some code fragment for that. I have this view for new File - public class NewView extends ViewPart { private DataBindingContext m_bindingContext; public static final String ID =…
Srijani Ghosh
  • 3,935
  • 7
  • 37
  • 68
0
votes
0 answers

Create a common delta pack bundle of an RCP application that runs in all the OS?

Is it possible to create a common delta pack of an RCP application that runs in all the OS(window, Linux,mac etc)?
0
votes
4 answers

Identify which instance of the view is currently active in RCP?

I am creating an RCP application. I need to open multiple instances of the same view but with different data. I did it by setting secondary id for different instances of the same view. Specifically, my problem is as follows: Please take a look I…
syeed
  • 1
  • 1
  • 1
0
votes
1 answer

Where are the eclipse product build scripts stored?

i'm exporting an eclipse product with the eclipse Product export wizard. when i run this wizard a lot of build scripts are generated and executed - i want to re-use these build scripts for my p2e-build. where does eclipse store these build scripts?
Martin Frank
  • 3,445
  • 1
  • 27
  • 47