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

Eclipse p2 mirror keeping sources

I am looking for a way to do a mirror of a p2 repository - reduce it to the needed content and still keep the sources attached. So far I have been trying to use the ant task to mirror the repository:
Nico
  • 13
  • 4
1
vote
0 answers

How use SVG as splash screen?

I use PDE and RCP. My tool has a splash image located in splash.bmp. In the build.properties I include the image into bin.includes (bin.includes = splash.bmp). In the app.product file I have the following code:
vesii
  • 2,760
  • 4
  • 25
  • 71
1
vote
0 answers

Is there a way to add Smart Insert to a custom Eclipse Editor?

Eclipse has a feature where it automatically inserts things. (eg. closing curly braces after pressing ENTER on an opening curly brace) This is found in Preferences > Java > Typing. I would like to add a similar feature in a Plugin of mine that…
Alex Linz
  • 11
  • 2
1
vote
1 answer

need help for swt.widgets.DateTime in eclipse-rcp for time format while accessing through the database

i have use the DateTime control that show only time in my design view in PM, Am format and user select only time from that one. i am using a column name timeFrom which i delcare a dataType time(7) in my mssql database. i can save it easily into…
Dinup Kandel
  • 2,457
  • 4
  • 21
  • 38
1
vote
2 answers

eclipse rcp :how to select a single cell in tableviewer?

hwo can I change the default selection behaviour of tables, I want to make a cell selected when user click it and make it editable when user double click it. with @nonty 's help, I get what I want. here is my cell highlighter implemention: package…
CaiNiaoCoder
  • 3,269
  • 9
  • 52
  • 82
1
vote
2 answers

hide perspectives

I created one perspective in eclipse workbench, not in eclipse rcp.Is it possible to hide other perspectives like java,debug? I just want to show only my perspective in my application.That should be the default one.Or I dont need to show any…
user414967
  • 5,225
  • 10
  • 40
  • 61
1
vote
0 answers

Own Application Class in RCP is not called

I develop a Eclipse RCP Client with the 2019-06 Eclipse Framework. My aim is it to override the IDEApplication class from the eclipse core, because I would like to force the workspace choose prompt to pop up at every start. In the eclipse class are…
tobias
  • 63
  • 2
  • 8
1
vote
0 answers

Capture OLE-C# exception from java eclipse-rcp application

I've written a c# OLE and I've integrated inside my java eclipse-rcp application throgh the class OleAutomation of org.eclipse.swt.ole.win32 described here Is it possible to throw exceptions from the OLE and catpure them with a try/catch statement…
picciopiccio
  • 309
  • 1
  • 4
  • 13
1
vote
1 answer

JVM startup time using Equinox OsGi

Is there any way we can log JVM start-up time in an RCP standalone app? I tried to launch the app and verify the jars loaded using Procmon in Windows but did not get much idea about the JVM start up timings which I am guessing includes Java Jars and…
Siddharth Shankar
  • 489
  • 1
  • 10
  • 21
1
vote
1 answer

Cannot extract exported eclipse product (exported as archive)

I export an eclipse RCP application (defined in a .product file) as an archive. But when I try to extract it using windows 7 build in extract tool I just get: corrupted archive I can extract the archive using 7zip though. Why can windows7 not open…
u123
  • 15,603
  • 58
  • 186
  • 303
1
vote
2 answers

Capturing kill signal in Eclipse RCP application

I've got a command line version of an Eclipse RCP GUI application that can makes use of a lot of the same plugins (this is handy for integration testing). One thing it does is connects to a server, requests stuff and starts an interactive loop. To…
richq
  • 55,548
  • 20
  • 150
  • 144
1
vote
1 answer

How to use IWorkspace ws=ResourcesPlugin.getWorkspace() of Eclipse in normal Java project?

How to use IWorkspace ws=ResourcesPlugin.getWorkspace() of Eclipse in a normal Java project? I want to use Eclipse workspace feting API (IWorkspace), it works perfectly fine when I used this in Plug-in development. But when I write a Java program…
pooja
  • 11
  • 1
1
vote
2 answers

Injecting singleton OSGi Declarative Service in Eclipse RCP

I'm trying to define a singleton OSGi service that would be used (=shared) by other plugins in my Eclipse RCP application but every plugin has its own version (from local classloader) and only the one version with the highest ranking gets…
Jan Straka
  • 13
  • 2
1
vote
1 answer

Implementing CLI for OSGi Equinox application

What is a correct way of implementing CLI for Eclipse Equinox Application? How to get any user console input from inside of Equinox-OSGi component to handle it according to application's business logic? Is there a library that already has the…
1
vote
0 answers

Target definition picks up Orbit source bundle but not the binary in Tycho build

An extract from the target definition:
paul
  • 13,312
  • 23
  • 81
  • 144
1 2 3
99
100