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

How to use the Common Navigator Framework with checkboxes

When I use Common Navigator Framework, I can not find how to let it support check boxes just like TreeViewer. At the beginning, I intend to use Check Tree View, but it can not take full advantage of RCP mechanism, so I decide use Common Navigator…
ProEditor
  • 59
  • 5
3
votes
1 answer

RCP overrided Composite dispose method not called

I have created my own compound composite by extending the Composite class in a e4 application. I have then override the dispose method but it never gets called. However if i add a dispose listener on my compound composite or any of the widgets that…
xavipen
  • 229
  • 1
  • 11
3
votes
2 answers

Eclipse RCP java.lang.NoClassDefFoundError: javax/validation/ConstraintViolationException

I have written an RCP Application using eclipse Luna repository. Now I want to update to Mars. Therefore I have changed my target definition so use the mars repository. My Application is starting but if I use some code snippets including my XML…
Pascal
  • 2,059
  • 3
  • 31
  • 52
3
votes
1 answer

Eclipse RCP browser load local html

In a RCP application development, I'm trying using a browser(org.eclipse.swt.browser.Browser) component to load local html file bundled in a plug-in. The plug-in project file structure is like below: project-name +-/src +-/html …
ju xiaomi
  • 53
  • 5
3
votes
4 answers

Configure a p2 update repository programmatically

There is an article in the Eclipse wiki how to configure user's p2 default repositories of an RCP application by adding a static conf file to your product: Equinox/p2/Adding Self-Update to an RCP Application - Configuring the user's default…
uı6ʎɹnɯ ꞁəıuɐp
  • 3,431
  • 3
  • 40
  • 49
3
votes
5 answers

Eclipse RCP: How to troubleshoot plugin dependencies & classpath problems?

I am working on an RCP project based on eclipse. It has been working fine but recently I thought I'd upgrade it to use a new eclipse version (3.2 -> 3.5). After a bit of trouble, it was running on the new platform. Then I did something. Don't know…
paul
  • 13,312
  • 23
  • 81
  • 144
3
votes
1 answer

How can one use the Web Page Editor in custom RCP application?

I want to use the "Web Tools Editor" that is part of the Web Tools Plattform in my own RCP-Application. I think i have got some understanding on the RCP plattform by now, but I still have no clue how to access the functionality of the pagedesigner…
panschk
  • 3,228
  • 3
  • 24
  • 20
3
votes
0 answers

My RCP got stuck inside a DLL file

I am developing a RCP program in Java, which calls some APIs from a DLL file via JNI(Java Native Interface). The dll file is also developed by myself. An API (we call it A) is used for getting some data and it can take a long time. So I developed…
3
votes
0 answers

Eclipse e4 - Logger Injection

As far as I have understood reading online articles, the embedded data-logger in Eclipse should be best deal especially if you're implementing an RCP app. (Confirm?) Anyway I'm struggling using it. The first issue I have faced is a problem with…
unclejohn00
  • 149
  • 10
3
votes
2 answers

RCP 4 Toggle a button in the toolbar

I am trying to do the following: Create a button in the toolbar (Already done as a 'handled tool item') Click on the button and have the button look like it's pressed in (I read something about using IAction.AS_CHECK_BOX, but I can't find any clear…
user2992188
  • 283
  • 1
  • 5
  • 18
3
votes
0 answers

Java PropertyChangeSupport using annotation

Generally we use something like public class Person { private final PropertyChangeSupport changeSupport = new PropertyChangeSupport(this); .... } to make POJOs bindable to UI or able to listen property changes from other objects.…
3
votes
6 answers

I wanted to get sub string

Currently I am using code like this while (fileName.endsWith(".csv")) { fileName = fileName.substring(0, fileName.lastIndexOf(FILE_SUFFIX_CSV)); if (fileName.trim().isEmpty()) { throw new IllegalArgumentException(); …
Ganesh H
  • 1,649
  • 3
  • 14
  • 20
3
votes
1 answer

Remove "General Project" option: eclipse RCP3

I am developing a GUI in eclipse with RCP3. Included in the new project options is a "General Project" option that has no relevance to the purpose of my application, and I would like to remove it. However, I can't find it anywhere in the code of…
abgordon
  • 667
  • 1
  • 6
  • 16
3
votes
1 answer

The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved

When building my Eclipse RCP Application, I get the following error. The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. It is indirectly referenced from required .class files. I have included the org.eclipse.core.runtime…
Ohanes Dadian
  • 625
  • 1
  • 9
  • 17
3
votes
1 answer

How can I add xText editor to Eclipse (e4) RCP Application?

I've already made a xtext editor (2.5). I try to use this editor in a part in my RCP application. I use this code: Injector injector = MyDslActivator.getInstance().getInjector(MyDslActivator.XTEXT_DSL_MYDSL); EmbeddedEditorFactory factory =…
SergSW
  • 238
  • 2
  • 10