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 tableViewer not displaying correctly

I have two jface TableViewers in my view, both defined two occupy the same amount of space vertically, or in other words, both defined to grab the Excess vertical space and to FILL the vertical alignment. This way, the view is correctly displayed,…
yat0
  • 967
  • 1
  • 13
  • 29
0
votes
1 answer

Cannot Use RCP in Windows Server 2008, But OK with RSH, Why?

I am trying to use "rcp" command to copy files from a Unix computer to a Windows Server 2008 R2 computer. Somehow, it fails to copy anything. For example, I am using the following command to copy the .rhosts file from the Unix computer to the…
Jay C
  • 141
  • 1
  • 12
0
votes
0 answers

Eclipse E4 - Adding progress bar to splash image

I'm trying to add a progress bar to a splash view, but I'm not able to succeed. This is what I did, but the bar is not shown on startup:
unclejohn00
  • 149
  • 10
0
votes
1 answer

RCP view does not load once closed even when application is rerun

I am new to eclipse RCP if i close the view while application is running, the view does not load next time when I run the application. Its somewhat like the application is saving its last state and does not go back to initial state. How do I make…
clearb
  • 43
  • 1
  • 6
0
votes
1 answer

exporting own eclipse plugin makes trouble

I've finished creating an eclipse plugin. testing it inside eclipse running another eclipse instance everything works fine. therefore I wanted to export it and install it in my 'main' eclipse. I ran export -> plugin development -> deployable plugins…
12dollar
  • 645
  • 3
  • 17
0
votes
1 answer

when is the filter(Viewer,TreePath,Object[]) method called?

I have created and added a new filter to my TreeViewer object. It works fine but I cannot seem to understand when is the filter(Viewer,TreePath,Object[]) called. So the filter is actually an instance of a class which extends ViewerFilter and needs…
Sterpu Mihai
  • 486
  • 1
  • 4
  • 15
0
votes
1 answer

Eclipse RCP DirectoryDialog not showing initial directory

Im using a DirectoryDialog like this: public static String showDialog(Composite parent, String path) { log.debug("Showing submission directory dialog"); Shell shell = parent.getShell(); DirectoryDialog dialog = new…
RoodRallec
  • 57
  • 1
  • 1
  • 7
0
votes
1 answer

SWT ProgressMonitorDialog vs Job

I would like to use a progress monitor that is non-modal and can be shrunk to the bottom-right of the status bar. As far as I can tell from testing, ProgressMonitorDialog correctly displays the progress bar to the user, and can be made modal using…
user2992188
  • 283
  • 1
  • 5
  • 18
0
votes
2 answers

Why does the @Inject never get called in my abstract class

I have the following scenario shown below. When I run the class in a debugger the @Inject never hits for myInjectMethod. If I move the myInjectMethod to MyService it works. Why is this happening? @Singleton @Creatable public class MyService…
user2992188
  • 283
  • 1
  • 5
  • 18
0
votes
1 answer

Cast to the same type in two different plugins

My app is made out of 2 plugins. For each plugin I declared a class called TYPE since I need a custom data-type for ArrayList's. The class TYPE is identical for either of the plugins. The scenario is the following: Plugin1.TYPE - Plugin2.TYPE …
unclejohn00
  • 149
  • 10
0
votes
1 answer

Migrating to E4 - equivalent of PlatformUI.isWorkbenchRunning

In our Eclipse RCP 3.7 application we have quite a few calls to PlatformUI.isWorkbenchRunning(). For example most of the calls are guards around Workbench API calls, along the lines of ` if (PlatformUI.isWorkbenchRunning()) { display =…
Andrei Socaciu
  • 1,198
  • 9
  • 20
0
votes
1 answer

How to patch a Java product?

I have developed and exported a small Java application (RCP). I am wondering whether there is a easy way to fix the bugs in the product on customer side by applying a patch instead of coping the whole product. Or something similar. Thank you very…
0
votes
0 answers

RCP Tycho override manifest with pom version

I want to override Manifest version witch maven version, it is possible ? I know that that I can override pom version with manifest with update-pom, but how about something opposite ?
0
votes
1 answer

Treeview inside getChildern()

Is it possible to create a treeview inside the getChildern() method of the content provider? I have a treeview whose getElements() method show some nodes coming from an enum for each node in this tree I want to have another tree view. So when the…
Ragnar
  • 645
  • 8
  • 28
0
votes
1 answer

What are some RCP Deployment Options?

We have an RCP application and we are looking for a better way to do installation/updates. Currently to install, they just unzip a zip file. The zip file also contains scripts in it that are not java code. We were running into some bugs when…
mdamman
  • 45
  • 2
  • 6