Class SimpleSelectionAdapter
- java.lang.Object
-
- org.eclipse.nebula.widgets.opal.commons.SimpleSelectionAdapter
-
- All Implemented Interfaces:
java.util.EventListener,org.eclipse.swt.events.SelectionListener,org.eclipse.swt.internal.SWTEventListener
public abstract class SimpleSelectionAdapter extends java.lang.Object implements org.eclipse.swt.events.SelectionListenerThis class is an adapter for the SelectionListener. Both behaviours (DefaultSelected and Selected) are doing the same thing
-
-
Constructor Summary
Constructors Constructor Description SimpleSelectionAdapter()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidhandle(org.eclipse.swt.events.SelectionEvent e)Sent when selection occurs in the control.voidwidgetDefaultSelected(org.eclipse.swt.events.SelectionEvent e)voidwidgetSelected(org.eclipse.swt.events.SelectionEvent e)
-
-
-
Method Detail
-
widgetDefaultSelected
public void widgetDefaultSelected(org.eclipse.swt.events.SelectionEvent e)
- Specified by:
widgetDefaultSelectedin interfaceorg.eclipse.swt.events.SelectionListener- See Also:
SelectionListener.widgetDefaultSelected(org.eclipse.swt.events.SelectionEvent)
-
widgetSelected
public void widgetSelected(org.eclipse.swt.events.SelectionEvent e)
- Specified by:
widgetSelectedin interfaceorg.eclipse.swt.events.SelectionListener- See Also:
SelectionListener.widgetSelected(org.eclipse.swt.events.SelectionEvent)
-
handle
public abstract void handle(org.eclipse.swt.events.SelectionEvent e)
Sent when selection occurs in the control.- Parameters:
e- - an event containing information about the selection
-
-