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

Extending GUI functionality of RCP application via fragment

I would like to extend the GUI functionality of an existing RCP application with another plug-in. One approach would be to use a fragment which is described quite well in this tutorial. I tried it, and everything seems to work fine. When I build the…
user3726374
  • 583
  • 1
  • 4
  • 24
0
votes
1 answer

Eclipselink factory.createEntityManager() stalls with more than one instance running

with my RCP program I have the problem that I want to have more than one copy running on my PC. The first instance runs very good. If I start the second instance, everything is fine until I want to access the database. Using this code: .. Map…
Raven
  • 561
  • 6
  • 19
0
votes
0 answers

RCP's ViewPart does not refresh?

I use 'IFolderLayout' to contain two ViewParts. When I drag the border to control the size of the 'IFolderLayout' if the first ViewPart is active the content will refresh as the size changes. But if the second ViewPart is active the content won't…
user2301210
  • 399
  • 3
  • 12
0
votes
1 answer

Add icon to rcp application

What is the code to add to the Exit menu (file>exit) to insert an icon in the -ApplicationActionBarAdvisor.java public class ApplicationActionBarAdvisor extends ActionBarAdvisor { private IWorkbenchAction exitAction; public…
0
votes
1 answer

Massive Eclipse AST Java Refactoring

Dear stackoverflow community! I have to refactor a huge amount of java classes and want to do it automatized. I want to use Java JDT and write an eclipse plugin for this purpose. Following 'problems' should be solved: Methods should not throw…
calaedo
  • 313
  • 1
  • 3
  • 15
0
votes
0 answers

How to Handle mouse over events for Tool Bar Items in RCP

I have created a tool bar with few Tool bar items in my Application. Menu:
rcpsgr
  • 1
0
votes
0 answers

Package uses conflict org.springframework.orm.jpa.vendor

In my project, I am getting package uses conflict with spring bundles. I used the techniques given in this link http://njbartlett.name/2011/09/02/uses-constraints.html I am getting package uses conflict for…
user1623627
  • 117
  • 1
  • 3
  • 12
0
votes
1 answer

How Netbeans Editors know that file is not modified after undo?

Netbeans uses standard UndoManager API for implementation of undo functionality. But neither standard javax.swing.undo.UndoManager nor org.openide.awt.UndoRedo.Manager doesn't have any method to mark states as saved and check modified status.…
Ha.
  • 3,454
  • 21
  • 24
0
votes
1 answer

Eclipse RCP: Change target of an action to another item

I've got a tree in a view builded with Common Navigation Framework. I've got a custom item MyTreeEntry that contains an IFolder object. public class MyTreeEntry implements IWorkbenchAdapter { private IFolder iFolder; [...] } I want to see for…
Tommaso DS
  • 211
  • 2
  • 14
0
votes
0 answers

How to prevent Rcp application from storing opened perspective state?

I am working on an eclipse application where i donot want the workbench state to be persisted .So i called -clearPersistedState in the ini file of my application.When it did not solve my problem then i have overridden initialize in…
Rajesh Kumar Dash
  • 2,203
  • 6
  • 28
  • 57
0
votes
0 answers

BIRT : Total 500 records shown. Result contain more records that are not displayed

Hi I am creating a BIRT report inside eclipse. I want to show the report in Eclipse RCP application. I am using java pojo as scripted data source. Now In the java script of the report, when I print output to console from open and fetch method and…
0
votes
1 answer

Eclipse RCP Plugin does not work outside Eclipse

I am learning the basics of E4 RCP development. I followed the tutorial below to create a basic application and a plugin. http://www.rcp-vision.com/?p=4972&lang=en The plugin is included in the dependencies of the .product file. When I right-click…
Aswin
  • 541
  • 4
  • 13
0
votes
0 answers

RCP Refresh using native hooks not working

I'm working on a RCP application and I want to set "Refresh using native hooks and polling" to true (Window->Preferences->General->Workspace). I've checked this option in the preferences of my app , but nothing is actually refreshed until I switch…
user3706156
  • 23
  • 1
  • 4
0
votes
2 answers

In Eclipse RCP, how do we add a combo control to the main toolbar and update it when a new editor is activated

Ok, so I have successfully added the combo control to the main toolbar of my eclipse RCP application using the following extension within one of my application's plugins.
0
votes
1 answer

create Property view rcp

Hi I am new to Eclipse rcp. I am developing a small application. In this application I want to show property view corressponding to the selected file. I referred to this article :…