import org.eclipse.swt.widgets.Shell; public class HotelReservation extends ApplicationWindow { protected Control createContents(Composite parent) { Button button = new Button(parent, SWT.PUSH); button.setText("Make a reservation"); button.addListener(SWT.Selection, new Listener() { public void hand...