Feedbacks
Google Guava Quickie: Clean toString methods
I’m not very good at debugging code. This is the result of a test infection :). When you do test driven development you don’t need to debug very often. But there are rare cases when I need to start …
Branching Support for the EMFStore Model Repository
EMFStore is a model repository based on EMF and the Eclipse RCP application framework. It enables EMF and RCP based applications to easily version and distribute their domain models with very few …
How to apply a custom theme to an Android application
Since the release of Android 4.0, we have seen an increase in applications that follow the new Android design guidelines. The guide describes the Android holo theme that provides a cohesive user …
Configuring the OS-X application menu for SWT apps
If you write a ‘pure’ SWT application on the Mac (i.e. just SWT – no RCP/workbench), you will notice that the OS-X application menu is not properly configured. It just displays ‘SWT’ instead of the …
Is Eclipse awesome?
Today, there is one major ingredient for successful technology marketing: Use the word “awesome” as often as you can. You can even do better by using “totally awesome”. Or “insanely awesome” if you …
Clean compareTo methods with Google Guava
A common task in object oriented programming is comparing two objects for the purpose of sorting. In Java the useful Comparable<T> Interface exists. I’ve found myself implementing the compareTo method …