I am at the beginning with GUI programming in JFace/SWT. Before I worked with an normal SWT window (http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.wb.ercp.doc.user%2Fhtml%2Fwizards%2FeRCP%2Fapplication_window.html) and today I've tried the JFace Application Window for the first time.
Now I want to set a minimum size of this window.. In SWT it worked with
shell.setMinimumSize(100,100)
but in my the org.eclipse.jface.window.ApplicationWindow there is no such method..
I've tried
this.createShell().setMinimumSize(100, 100);
(my implementation "public class MainView extends ApplicationWindow {")
but it doesn't work.
this.getShell()
returns null.
By the way, I searched for a good documentation about JFace in gernal, for now especially for the Application Window. But I couldn't find anything really good and extensive.
The documentation in SWT, especially JFace is very dispairing.. Too bad, because there are nice features in it.
What are your experiences?