diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-09-06 05:55:06 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-09-06 05:55:06 +0000 |
commit | 914e0a85df99f0826f32d5a80d98c032779484c6 (patch) | |
tree | 7d67e1996bae5b14866d655a3c6112bef6f77ffc /gwtquery-core/src | |
parent | d02bdc4639c7971481decd4b28428ecf8c7455bf (diff) | |
download | gwtquery-914e0a85df99f0826f32d5a80d98c032779484c6.tar.gz gwtquery-914e0a85df99f0826f32d5a80d98c032779484c6.zip |
update lazy interfaces
Diffstat (limited to 'gwtquery-core/src')
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java | 9 |
1 files changed, 2 insertions, 7 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 16ab8ec7..5e68a6fc 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 @@ -32,11 +32,11 @@ 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.StyleInjector.StyleInjectorImpl; import com.google.gwt.dom.client.TextAreaElement; import com.google.gwt.query.client.css.HasCssValue; import com.google.gwt.query.client.css.TakesCssValue; import com.google.gwt.query.client.css.TakesCssValue.CssSetter; +import com.google.gwt.query.client.impl.AttributeImpl; import com.google.gwt.query.client.impl.DocumentStyleImpl; import com.google.gwt.query.client.impl.SelectorEngine; import com.google.gwt.query.client.js.JsCache; @@ -358,12 +358,7 @@ public interface LazyGQuery<T> extends LazyBase<T>{ /** * Set a single property to a value, on all matched elements. */ - LazyGQuery<T> attr(String key, boolean value); - - /** - * Set a single property to a value, on all matched elements. - */ - LazyGQuery<T> attr(String key, String value); + LazyGQuery<T> attr(String key, Object value); /** * Insert content before each of the matched elements. The elements must |