aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2014-12-06 16:03:25 +0100
committerManolo Carrasco <manolo@apache.org>2014-12-06 16:03:25 +0100
commitd0601f955bd58db1825cec76499bbb6ffefa26bd (patch)
tree0e88c5e5cc3b072b1831204f6e65c5bd3408311f /gwtquery-core/src
parent2933111c59bdb8b25625cce884d38a9df8b16d98 (diff)
downloadgwtquery-d0601f955bd58db1825cec76499bbb6ffefa26bd.tar.gz
gwtquery-d0601f955bd58db1825cec76499bbb6ffefa26bd.zip
Forgot to update lazy interfaces in last merge
Diffstat (limited to 'gwtquery-core/src')
-rw-r--r--gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java29
1 files changed, 20 insertions, 9 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java
index 33b12731..7a4ab3ad 100644
--- a/gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java
+++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java
@@ -12,20 +12,26 @@
* the License.
*/
package com.google.gwt.query.client;
-import static com.google.gwt.query.client.plugins.QueuePlugin.*;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
+import static com.google.gwt.query.client.plugins.QueuePlugin.Queue;
import com.google.gwt.core.client.GWT;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JsArrayMixed;
import com.google.gwt.core.client.JsArrayString;
import com.google.gwt.core.client.ScriptInjector;
-import com.google.gwt.dom.client.*;
+import com.google.gwt.dom.client.BodyElement;
+import com.google.gwt.dom.client.ButtonElement;
+import com.google.gwt.dom.client.Document;
+import com.google.gwt.dom.client.Element;
+import com.google.gwt.dom.client.InputElement;
+import com.google.gwt.dom.client.NativeEvent;
+import com.google.gwt.dom.client.Node;
+import com.google.gwt.dom.client.NodeList;
+import com.google.gwt.dom.client.OptionElement;
+import com.google.gwt.dom.client.SelectElement;
import com.google.gwt.dom.client.Style.Display;
import com.google.gwt.dom.client.Style.HasCssName;
+import com.google.gwt.dom.client.TextAreaElement;
import com.google.gwt.query.client.css.CSS;
import com.google.gwt.query.client.css.HasCssValue;
import com.google.gwt.query.client.css.TakesCssValue;
@@ -56,6 +62,10 @@ import com.google.gwt.user.client.EventListener;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.Widget;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Map;
import com.google.gwt.query.client.GQuery.*;
import com.google.gwt.query.client.LazyBase;
@@ -1015,15 +1025,16 @@ public interface LazyGQuery<T> extends LazyBase<T>{
/**
* Removes all elements from the set of matched elements that do not pass the specified css
* expression. This method is used to narrow down the results of a search.
- * {@link #filterDetached} is set to false.
+ * By default it works for either detached and attached elements unless
+ * {@link SelectorEngine#filterDetached} is set to false.
*/
LazyGQuery<T> filter(String... filters);
/**
* Removes all elements from the set of matched elements that do not pass the specified css
* expression. This method is used to narrow down the results of a search.
- * Setting considerDetached parameter to true, means that we should consider detached elements
- * as well which implies some performance penalties.
+ * Setting filterDetached parameter to true, means that we should consider detached elements
+ * as well which implies some performance penalty.
*/
LazyGQuery<T> filter(boolean filterDetached, String... filters);