*
* @return the control's action listener
*/
public ActionListener getActionListener() {
if (actionListener == null && listener != null && listenerMethod != null) {
actionListener = new ActionListenerAdaptor(listener, listenerMethod);
}
return actionListener;
}