From: Manuel Carrasco MoƱino Date: Fri, 1 Nov 2013 12:46:41 +0000 (+0100) Subject: Fix javadocs as julien suggested in last review X-Git-Tag: release-1.4.0~36^2~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=39b7a17652d82d8233f78408acfe1359e0955203;p=gwtquery.git Fix javadocs as julien suggested in last review --- diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/Browser.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/Browser.java index 437b6ae9..96036567 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/Browser.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/Browser.java @@ -1,5 +1,5 @@ /* - * Copyright 2011, The gwtquery team. + * Copyright 2013, The gwtquery team. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of @@ -20,7 +20,7 @@ import com.google.gwt.query.rebind.BrowserGenerator; /** * This class is the equivalent to the jQuery.browser object in gQuery. * - * The implementation is performend by the {@link BrowserGenerator} + * The implementation is performed by the {@link BrowserGenerator} * * It can be used as a way of deferred-binding without modifying .gwt.xml files, * taking advantage of compiler optimizations which will or will not include the @@ -41,17 +41,14 @@ import com.google.gwt.query.rebind.BrowserGenerator; public abstract class Browser { /** - * Not in jquery, but useful in GWT for deferred bindings. * @return true if ie6 */ public final boolean ie6 = isIe6(); /** - * Not in jquery, but useful in GWT for deferred bindings. * @return true if ie8 */ public final boolean ie8 = isIe8(); /** - * Not in jquery, but useful in GWT for deferred bindings. * @return true if ie9 */ public final boolean ie9 = isIe9(); diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/rebind/BrowserGenerator.java b/gwtquery-core/src/main/java/com/google/gwt/query/rebind/BrowserGenerator.java index 075c4da4..a1953677 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/rebind/BrowserGenerator.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/rebind/BrowserGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright 2011, The gwtquery team. + * Copyright 2013, The gwtquery team. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of