aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src/main/java/gwtquery/client/Function.java
diff options
context:
space:
mode:
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;
- }
-}