diff options
author | Ray Cromwell <cromwellian@gmail.com> | 2009-04-30 21:43:29 +0000 |
---|---|---|
committer | Ray Cromwell <cromwellian@gmail.com> | 2009-04-30 21:43:29 +0000 |
commit | 96375a486ad02ebe30af85a7dddc48b7f3e7349d (patch) | |
tree | 2fe65f44995720fc8b477b3845fd2c985e6f6d29 /gwtquery-core/src/main/java/gwtquery/client/Function.java | |
parent | 94e9626e350487ade2617ebf0706897d77df1b17 (diff) | |
download | gwtquery-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.java | 26 |
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; - } -} |