EclipseSource Blogs

Lesen Sie die neusten Blogposts

Talks selected for Modeling Symposium @ EclipseCon North America 2014

Jonas Helming
24.02.2014

I am happy to present the selected talks for the Modeling Symposium for EclipseCon North America 2014. It is scheduled for the third day of the conference, i.e., Wednesday, March 19th, 5pm. The …

More tests are not always good - Why you should stop at 100% test coverage

Matthias Kempka
21.02.2014

As I started in the programming industry almost a decade ago, writing tests at all was still a fairly new thing for many developers. Having been one of the early TDD advocates in my social …

User Experience Enhancements in Tabris 1.3 for Android

Moritz Post
20.02.2014

The upcoming Tabris 1.3 release will include visual improvements to the Tabris Android client. Most notable is an updated animation for the TabFolder appearance and an improved user experience when …

A lightweight Java application server on Raspberry Pi

Jochen Krause
18.02.2014

Raspberry Pi is a trademark of the Raspberry Pi Foundation As of recently, Oracle is providing a JVM for Raspberry Pi that performs well enough to use the Pi as an application server. Raspberry Pi …

Dart as a programming language

Moritz Post
18.02.2014

Lately i have been experimenting with the dart language a lot. Dart claims to be “a new platform for scalable web app engineering” and while that is true, it is also an interesting programming …

SWT Best Practices: Changing Fonts

10.02.2014

Here is a widespread way of creating a label with a bold font: Label label = new Label(shell, SWT.NONE); Font boldFont = new Font( label.getDisplay(), new FontData( "Arial", 12, SWT.BOLD ) ); …