Java com.google.gwt.query.client Function fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.query.client Function fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.query.client Function.

The text is from its open source code.

Subclass

com.google.gwt.query.client.Function has subclasses.
Click this link to see all its subclasses.

Constructor

Method

voidf()
Override this to define a function which does not need any parameter.
voidf(Object... data)
Override this method for bound callbacks
booleanf(Event e)
Override this method for bound event handlers.
voidf(com.google.gwt.dom.client.Element e)
Override this for GQuery methods which take a callback and do not expect a return value.
voidf(com.google.gwt.user.client.Element e)
voidf(Widget w)
Override this for GQuery methods which take a callback, but do not expect a return value, apply to a single widget.
Objectf(com.google.gwt.dom.client.Element e, int i)
Override this for GQuery methods which loop over matched elements and invoke a callback on each element.
Objectf(com.google.gwt.user.client.Element e, int i)
Override this for GQuery methods which loop over matched elements and invoke a callback on each element.
Objectf(Widget w, int i)
Override this for GQuery methods which loop over matched widgets and invoke a callback on each widget.
voidf(int i, Object... data)
Override this method for bound callbacks
booleanf(Event e, Object data)
Override this method for bound event handlers if you wish to deal with per-handler user data.