In a Java SWT shell window, how do I set its inner size than its whole window frame size?
For instance, if I use shell.setSize(300, 250) this would make the whole window
If I get you right you should set the size of the inner component to the needed size and use the method pack() (of the frame).
pack()