Questions tagged [eclipse-rcp]

For questions about the Eclipse Rich Client Platform which is a generic Java platform for running applications. It provides the basic blocks for building rich client application using the OSGi framework.

The characteristics of Eclipse RCP include:

  • Components - Eclipse includes a robust component model. These loosely coupled components are usually called plug-ins. The component model is based on the OSGi standard.

  • Middleware and infrastructure - On top of the component model is a set of frameworks and facilities that make the job of writing client applications much easier.

  • Native user experience - The Eclipse Standard Widget Toolkit (SWT) provides a graphical user interface (GUI) toolkit for java that allows efficient and portable access to the native UI facilities of the operating system (OS).

  • Portability - Eclipse provides support for heterogeneous OSs and client environments, ranging from traditional PCs, to thinner devices such as tablets and kiosks, down to mobile devices and embedded smart phones.

  • Intelligent install and update - Eclipse's component framework enables plug-ins to be deployed and updated using any number of mechanisms: HTTP, Java Web Start, repositories, or simple file copying.

  • Component libraries - The Eclipse community has produced plug-ins for building pluggable UIs, managing Help content, install and update support, text editing, consoles, product introductions, graphical editing frameworks, modeling frameworks, reporting, data manipulation, and many more.

The Eclipse IDE itself is an Eclipse RCP.

Documentation

5588 questions
1
vote
1 answer

javadoc:aggregate deletes product target folder

I can "mvn clean install" to generate zip file of my multi-project application in target folder of my product project. I can run "mvn clean javadoc:aggregate" to generate javadocs. no problem up to generating both... When I run "mvn clean install…
lembas
  • 377
  • 1
  • 7
  • 21
1
vote
2 answers

Option -nl de ignored in my Eclipse RCP Application

I have created an eclipse RCP application with .nl1 fragments for some of the plugins. When I run the application from inside eclipse with the option: -nl de the application is started with german texts as expected. But when I export the application…
u123
  • 15,603
  • 58
  • 186
  • 303
1
vote
0 answers

how to update jfree line chart in RCP View

I have four views in Eclipse RCP App. In that 3 View are responsible to show the multiline graphs. i am using a switch case for drawing the graph continuously until other views are get focused. But the view are not showing the updated chart. The…
user808457
  • 11
  • 2
1
vote
0 answers

Does p2 have the ability to verify file's checksum ?

I have an Eclipse RCP application with p2. If someone modifies one of my plug-ins, can my applciation use p2 to verify the file's checksum(e.g. md5)and download the correct plug-in from remote p2 repository to replace it ?
Bourbon_7
  • 161
  • 7
1
vote
0 answers

button drag and drop

I want to use one button drag and drop functionality to my application. My requirement I have one view called ViewA and there is one button in it. That should be able to drag and drop it into the another view called ViewB. How do I do that?. When I…
user414967
  • 5,225
  • 10
  • 40
  • 61
1
vote
0 answers

Notarization of MacOS Eclipse RCP Application

We want to notarize our Eclipse RCP Application. At present we build the eclipse application with tycho(maven) tycho-p2-director-plugin:1.6.0:materialize-products (materialize-products) @ .product --- In our codebase there is a…
fjord
  • 11
  • 3
1
vote
1 answer

Who calls start() on the Bundle-Activator class in Eclipse?

My ultimate goal is Invoking Eclipse plugin from Java. I see that an Eclipse plugin registers a class as Bundle-Activator in MANIFEST.MF. The start(BundleContext context) method will be called on this class. Where does this call come from? Eclipse…
Daniel Darabos
  • 26,991
  • 10
  • 102
  • 114
1
vote
2 answers

BIRT: Getting started with the Chart API

So I need a few simple pointers with the BIRT chart API. I am trying to draw a simple line chart of a numeric value over time. I have a vector of (Date,Double) pairs as input. I have read through the examples in org.eclipse.birt.chart.examples but…
Martin Cowie
  • 2,788
  • 7
  • 38
  • 74
1
vote
1 answer

How to manually handle editor dirty state in Eclipse IDE

I'm making an editor that manipulates the information of a file through tags. I made some logic to detect editing these tags, but after a lot of research, I still haven't found a way to manually handle the dirty state of my editor. With this I can…
1
vote
0 answers

How to filter eclipse rcp key bindings as ESC key?

I have some trouble to select combo item from AutoCompleteField. When I begin to write into combo, some proposals are displayed with a pop-up dialog. If I select an item and hit Enter, this choice is kept by combo: this is the common behavior. If a…
chepseskaf
  • 664
  • 2
  • 12
  • 41
1
vote
1 answer

R.java permission denied Error in Eclipce in using old Workspace

Before some days I am using my eclipse in to Windows XP. I also have one another OS (Windows 7) in to another Drive. Now I want to use the Eclipse for Android from Windows 7. But, While I have open Eclipse it gives me the Error like the Some file is…
Shreyash Mahajan
  • 23,386
  • 35
  • 116
  • 188
1
vote
0 answers

Large SWT Image is not printed properly

Hei, SWT Gurus, I have a pretty weird situation. The thing is, that I am trying to print gantt chart in my Eclipse RCP application. Gantt chart is quite long and sometimes high as well. Its dimensions are following: height=3008px (2 vertical pages),…
Alex K.
  • 3,294
  • 4
  • 29
  • 41
1
vote
1 answer

Eclipse RCP - ToolItems not rendering with Edge browser until window resized

Hope you can help with a bit of a strange problem I'm having. Take a very simple RCP application, with a toolbar along the top, where the user can switch between perspectives. One perspective contains a Browser component. Normally, when a user…
Jakg
  • 922
  • 12
  • 39
1
vote
2 answers

SWT TableViewer multiselection without Ctrl

I'm using a TableViewer and I want to it perform like when I hold CTRL key. I mean if I click a row, it must be added to selection and not replace current selection. I probably need to do this manually in selection listener. But may be there's a…
Ilya Ivanov
  • 2,379
  • 1
  • 21
  • 24
1
vote
4 answers

How to run more than one job concurrently in RCP?

I want to know how to execute more than one job in Eclipse at a time. I want to run more than one job concurrently in RCP.
Selva
  • 179
  • 1
  • 3
  • 13