I'm creating controlls to use with WindowBuilder Pro
. Is there a possibility to detect design mode in Eclipse
?
Example what i want to do in my control:
if(designmode) {
loadDummyValues();
}else{
loadRealComplexRuntimeValues();
}
In Netbeans its determined like this:
java.beans.Beans.isDesignTime()
So i hope there is also a possibility for Eclipse
.
Ok, i found it myself, @Ahmed Ekri pointed me in the right direction, to look specifically for a notion for
WindowBuilder
:More details can be read here.