aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src/main/java/gwtquery/client/Function.java
diff options
context:
space:
mode:
authorRay Cromwell <cromwellian@gmail.com>2009-04-30 21:43:29 +0000
committerRay Cromwell <cromwellian@gmail.com>2009-04-30 21:43:29 +0000
commit96375a486ad02ebe30af85a7dddc48b7f3e7349d (patch)
tree2fe65f44995720fc8b477b3845fd2c985e6f6d29 /gwtquery-core/src/main/java/gwtquery/client/Function.java
parent94e9626e350487ade2617ebf0706897d77df1b17 (diff)
downloadgwtquery-96375a486ad02ebe30af85a7dddc48b7f3e7349d.tar.gz
gwtquery-96375a486ad02ebe30af85a7dddc48b7f3e7349d.zip
Refactored to com.google.gwt.query
Fixup javadocs Add tests
Diffstat (limited to 'gwtquery-core/src/main/java/gwtquery/client/Function.java')
-rw-r--r--gwtquery-core/src/main/java/gwtquery/client/Function.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/gwtquery-core/src/main/java/gwtquery/client/Function.java b/gwtquery-core/src/main/java/gwtquery/client/Function.java
deleted file mode 100644
index f9d70a4f..00000000
--- a/gwtquery-core/src/main/java/gwtquery/client/Function.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package gwtquery.client;
-
-import com.google.gwt.dom.client.Element;
-import com.google.gwt.user.client.Event;
-
-/**
- * Extend this class to implement functions.
- */
-public abstract class Function {
-
- public String f(Element e, int i) {
- return "";
- }
-
- public void f(Element e) {
- }
-
- public boolean f(Event e, Object data) {
- return f(e);
- }
-
- public boolean f(Event e) {
- f(e.getCurrentTarget());
- return true;
- }
-}