aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java
index e90ad93e..b094ebf8 100644
--- a/gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java
+++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java
@@ -323,6 +323,7 @@ public abstract class Function {
* @param e takes a com.google.gwt.user.client.Element.
*
*/
+ @Deprecated
public void cancel(com.google.gwt.user.client.Element e) {
setElement(e);
}
@@ -356,6 +357,7 @@ public abstract class Function {
* @param e takes a com.google.gwt.user.client.Element.
*
*/
+ @Deprecated
public Object f(com.google.gwt.user.client.Element e, int i) {
setElement(e);
setIndex(i);
@@ -458,6 +460,7 @@ public abstract class Function {
* @param elem takes a com.google.gwt.user.client.Element
*/
private boolean loop = false;
+ @Deprecated
public void f(com.google.gwt.user.client.Element e) {
setElement(e);
Widget w = e != null ? GQuery.getAssociatedWidget(e) : null;