Yes, SWT.Selection or SelectionListener is what you are looking for:
Button button = new Button(shell, SWT.PUSH); button.addListener(SWT.Selection, new Listener() { @Override public void handleEvent(Event event) { System.out.println("SWT.Selection"); } });
adding a SelectionListener internally does the same as the code above.
It can be called a choice, because Button can be a checkbox or a radion button depending on the style.
source share