EclipseSource Blogs
Lesen Sie die neusten Blogposts
Talks selected for Modeling Symposium @ EclipseCon North America 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
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
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
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
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
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 ) ); …