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
0 answers

Eclipse RCP Eclipse Application Run error --

I got this error trying to run an Eclipse Application on Eclipse version 3.8.2: An error has occurred. See the log file PATHTO PROJECT/.metadata/.plugins/org.eclipse.pde.core/PRODUCT_FOLDER/1444675727934.log But there is no log file. There is…
Springgrass
  • 41
  • 1
  • 5
0
votes
1 answer

How to take active parts with EPartService?

I want to take active parts by using EPartService. Can I use EPartService for this?
eponymous
  • 2,090
  • 5
  • 23
  • 29
0
votes
1 answer

how to display label on composite in swt?

I want to display a label on composite. I added label but I can not see on display. My code is below: GridLayout parentLayout = new GridLayout(1, true); parent.setLayout(parentLayout); Composite filterComposite = new Composite(parent,…
eponymous
  • 2,090
  • 5
  • 23
  • 29
0
votes
1 answer

Performance improvement of FilteredTree

I'm using FilteredTree class to filter over my TreeViewer contents, but as there is lots of data now, when I type in something to filter the data, it hangs before I enter my next letter. Is there any way that I can improve the performance.
Juseeth
  • 467
  • 1
  • 6
  • 18
0
votes
0 answers

Eclipse RCP for multiple user with one copy . error about osgi

I build a rcp use osgi which can work well when just a user use one of copy. but i want to change it to different linux user share one of copy(read only for all user ) ,but osgi need a "./confiurationg" with writable . There is a best way to…
pdb
  • 1
0
votes
1 answer

Create Eclipse context sub-menus responsively

I'm familiar with creating Eclipse menus. I wish to offer the user a very deep & broad set of menu actions. Creation of these context-sensitive actions takes an amount of processing time. I do not wish to generate all of them at once. I wish to…
ianmayo
  • 2,256
  • 3
  • 26
  • 44
0
votes
1 answer

How to read data from a node in Tree in SWT on double click?

I am writing code to create a tree in SWT RCP. In this tree, I want to implement a functionality - When I double on a node, The name of the node should be displayed. The wrote for that purpose is - private void addDoubleClickListener() { // TODO…
Srijani Ghosh
  • 3,935
  • 7
  • 37
  • 68
0
votes
0 answers

Eclipse RCP Launcher ignores exit code EXIT_RELAUNCH

I have an RCP app which exposes the menu contribution for OpenWorkspaceAction which launches the workspace chooser dialog. I launch it as a stand-alone app (i.e. not from the IDE), use the workspace switcher to select another workspace, and the app…
MidnightJava
  • 1,927
  • 2
  • 18
  • 38
0
votes
1 answer

All the nodes in Tree not getting expanded

I am trying to learn TreeViewer in RCP. I wrote this small piece of code for that. public class TreeViewClass extends ViewPart { public static final String ID = "TreeViewerDemo.treeView"; public TreeViewClass() { // TODO Auto-generated…
Srijani Ghosh
  • 3,935
  • 7
  • 37
  • 68
0
votes
1 answer

E4 RCP: how do you find a feature to install

My beginner question is likely very badly phrased but I looked at https://wiki.eclipse.org/E4/Install and did not work out the answer. On Mars RCP, I want to create a LifeCycle class which needs to use the package…
0
votes
0 answers

swt layouts position size

Please, I need your help. Excuse my poor english! I hope to be clear...I have a view for showing reports and charts but I'm stucked with the position and sizing of the elements. I read all about layouts and I can´t reach the goal. I attach an image…
Monik Eliz
  • 107
  • 9
0
votes
2 answers

How to design a Composite in SWT

I want to put 3 fixed size group in the composite in A side. And I want to place the image and the label middle of this group. My example image and code is below. The problem is the groups are resize according to label size in them and labels were…
eponymous
  • 2,090
  • 5
  • 23
  • 29
0
votes
1 answer

group design in eclipse 4 RCP

I want to add an image and a label in a group on a composite by using eclipse 4 RCP. Example image is like below. How can I do this? My example code is below: Group group_incom = new Group(dynamicDataComp, SWT.NONE); group_incom.setLayout(new…
eponymous
  • 2,090
  • 5
  • 23
  • 29
0
votes
1 answer

TableViewer initial sorting

I have a problem with JFace TableViewer in RCP. Basically I have a table with 4 rows, and as input I give an already sorted list of elements. So I expect that first element in my input list is first row in a table. However, the TableViewer reorders…
Ivan Senic
  • 11
  • 1
0
votes
1 answer

IllegalStateException for running a Job inside a dispose listener

I have a dispose listener which has a Job created inside widgetDisposed(DisposeEvent event) method. So executing this method when the TreeViewer gets disposed is causing, An internal error occurred during: "Cleanup Job". No context available outside…
Juseeth
  • 467
  • 1
  • 6
  • 18