Category Archives: Eclipse RCP

Eclipse RCP – Auto-complete Text and Combo widgets

Today I will describe a simple way to add auto-completion to you Eclipse RCP/SWT based application using some resources I’ve found browsing the web. To not reinvent the wheel, I have found a project on sourceforge which does just that, and which does the job well enough. First of all go to the sourceforge website […]

Read More →

Eclipse RCP – Simple Logging mechanism

This is a short snippet to solve you logging needs in Eclipse RCP application by using build in logging functionality. I have created 3 simple static utility methods but you can create your LogUtil utility class as you wish based on this example: import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; public class LogUtil {     public static […]

Read More →