SWT Java Tutorial

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class ControlLocationSize {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    
    Button button = new Button(shell, SWT.PUSH);
    button.setLocation(new Point(20,20));
    button.setSize(new Point(200,20));
    
    shell.setSize(260, 120);
    shell.open();
    System.out.println("------------------------------");
    System.out.println("getBounds: " + button.getBounds());
    System.out.println("getLocation: " + button.getLocation());
    System.out.println("getSize: " + button.getSize());
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
  }
}