public static class

ListenerWrapper.WrappedClickListener

extends ListenerWrapper<T>
implements ClickHandler
java.lang.Object
   ↳ com.google.gwt.user.client.BaseListenerWrapper<T>
     ↳ com.google.gwt.user.client.ui.ListenerWrapper<T>
       ↳ com.google.gwt.user.client.ui.ListenerWrapper.WrappedClickListener

This class is deprecated.
will be removed in GWT 2.0 along with the listeners being wrapped

Class Overview

Wrapper for a ClickListener.

Summary

Public Methods
static ListenerWrapper.WrappedClickListener add(HasClickHandlers source, ClickListener listener)
This method is deprecated. will be removed in GWT 2.0 along with the listener classes
void onClick(ClickEvent event)
Called when a native click event is fired.
static void remove(Widget eventSource, ClickListener listener)
This method is deprecated. will be removed in GWT 2.0 along with the listener classes
[Expand]
Inherited Methods
From class com.google.gwt.user.client.ui.ListenerWrapper
From class com.google.gwt.user.client.BaseListenerWrapper
From class java.lang.Object
From interface com.google.gwt.event.dom.client.ClickHandler

Public Methods

public static ListenerWrapper.WrappedClickListener add (HasClickHandlers source, ClickListener listener)

This method is deprecated.
will be removed in GWT 2.0 along with the listener classes

Adds the wrapped listener.

Parameters
source the event source
listener the listener
Returns
  • the wrapped listener

public void onClick (ClickEvent event)

Called when a native click event is fired.

Parameters
event the ClickEvent that was fired

public static void remove (Widget eventSource, ClickListener listener)

This method is deprecated.
will be removed in GWT 2.0 along with the listener classes

Removes the wrapped listener.

Parameters
eventSource the event source from which to remove the wrapped listener
listener the listener to remove