Uses of Class
org.eclipse.swt.events.SelectionEvent
-
Packages that use SelectionEvent Package Description org.eclipse.swt.events -
-
Uses of SelectionEvent in org.eclipse.swt.events
Subclasses of SelectionEvent in org.eclipse.swt.events Modifier and Type Class Description class
ExpandEvent
Instances of this class are sent as a result ofExpandItem
s being expanded or collapsed.class
TreeEvent
Instances of this class are sent as a result of trees being expanded and collapsed.Methods in org.eclipse.swt.events with parameters of type SelectionEvent Modifier and Type Method Description void
SelectionAdapter. widgetDefaultSelected(SelectionEvent e)
Sent when default selection occurs in the control.void
SelectionListener. widgetDefaultSelected(SelectionEvent e)
Sent when default selection occurs in the control.void
SelectionAdapter. widgetSelected(SelectionEvent e)
Sent when selection occurs in the control.void
SelectionListener. widgetSelected(SelectionEvent e)
Sent when selection occurs in the control.Method parameters in org.eclipse.swt.events with type arguments of type SelectionEvent Modifier and Type Method Description static SelectionListener
SelectionListener. widgetDefaultSelectedAdapter(java.util.function.Consumer<SelectionEvent> c)
Static helper method to create aSelectionListener
for theSelectionListener.widgetDefaultSelected(SelectionEvent e)
) method, given a lambda expression or a method reference.static SelectionListener
SelectionListener. widgetSelectedAdapter(java.util.function.Consumer<SelectionEvent> c)
Static helper method to create aSelectionListener
for theSelectionListener.widgetSelected(SelectionEvent e)
) method, given a lambda expression or a method reference.
-