]> source.dussan.org Git - gwtquery.git/commitdiff
Removing trailing spaces
authorManolo Carrasco <manolo@apache.org>
Wed, 31 Dec 2014 17:57:01 +0000 (18:57 +0100)
committerManolo Carrasco <manolo@apache.org>
Wed, 31 Dec 2014 17:57:01 +0000 (18:57 +0100)
18 files changed:
gwtquery-core/src/main/java/com/google/gwt/query/client/Browser.java
gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java
gwtquery-core/src/main/java/com/google/gwt/query/client/GQ.java
gwtquery-core/src/main/java/com/google/gwt/query/client/IsProperties.java
gwtquery-core/src/main/java/com/google/gwt/query/client/Promise.java
gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNativeMin.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/QueuePlugin.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/deferred/Callbacks.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/deferred/FunctionDeferred.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/deferred/PromiseFunction.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/deferred/PromiseRPC.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/deferred/PromiseReqBuilderJSONP.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/Fx.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/widgets/WidgetsUtils.java
gwtquery-core/src/main/java/com/google/gwt/query/rebind/BrowserGenerator.java
gwtquery-core/src/main/java/com/google/web/bindery/requestfactory/shared/gquery/PromiseRF.java

index b06253ecfef7c37e1d164ed272cde4b5d3d4158a..dfe06f229e429b6fecb7151600d52ae3df76b505 100644 (file)
@@ -29,12 +29,12 @@ import com.google.gwt.query.rebind.BrowserGenerator;
  * Example:
  * <pre>
       if (GQuery.browser.ie6) {
-        // this code will be removed on non-ie6 permutations 
+        // this code will be removed on non-ie6 permutations
         Window.alert("IE6");
       } else if (!browser.webkit) {
-        // this code will be only in the webkit permutation 
+        // this code will be only in the webkit permutation
         Window.alert("NOT WEBKIT");
-      } 
+      }
  * </pre>
  *
  */
@@ -69,7 +69,7 @@ public abstract class Browser {
    * @return true if webkit
    * @deprecated use webkit() instead
    */
-  @Deprecated 
+  @Deprecated
   public final boolean safari = isWebkit();
   /**
    * @return true if webkit
index d583d0a9354c8ea88c505079bb6c0b80314c98d8..7416870d50c3ef1b0377ffadb4f614b8a05e5382 100644 (file)
@@ -36,7 +36,7 @@ public abstract class Function {
    * of the arguments array. It recursively visits arrays and inspect
    * object to print an appropriate representation of them.
    * 
-   * It is very useful to debug arguments passed in nested promises. 
+   * It is very useful to debug arguments passed in nested promises.
    * 
    * It is protected so as it can be used in Inner functions.
    * 
@@ -130,7 +130,7 @@ public abstract class Function {
   }
 
   /**
-   * @deprecated use getArgument instead 
+   * @deprecated use getArgument instead
    */
   @Deprecated
   public Object getDataObject(int idx) {
@@ -159,7 +159,7 @@ public abstract class Function {
    * Utility method for safety getting an array present at a certain
    * position in the list of arguments.
    * 
-   * Useful for Deferred chains where result of each resolved 
+   * Useful for Deferred chains where result of each resolved
    * promise is set as an array in the arguments list.
    * 
    * Always returns an array.
@@ -178,14 +178,14 @@ public abstract class Function {
    * Return the argument in the position idx or null if it doesn't exist.
    * 
    * Note: if the return type doesn't match the object, you
-   * will get a casting exception. 
+   * will get a casting exception.
    */
   public <T> T getArgument(int idx) {
     return getArgument(-1, idx, null);
   }
 
   /**
-   * Convenience alias for the getArguments(idx) method thought just to 
+   * Convenience alias for the getArguments(idx) method thought just to
    * make gQuery code look closed to jQuery.
    */
   public <T> T arguments(int idx) {
@@ -223,13 +223,13 @@ public abstract class Function {
    * Utility method for safety getting an object present at a certain
    * position in the list of arguments composed by arrays.
    * 
-   * Useful for Deferred chains where result of each resolved 
+   * Useful for Deferred chains where result of each resolved
    * promise is set as an array in the arguments list.
    * 
    * When the object found in the array doesn't match the type required it returns a null.
    * 
    * Note: If type is null, we don't check the class of the object found andd you could
-   * eventually get a casting exception. 
+   * eventually get a casting exception.
    * 
    */
   @SuppressWarnings("unchecked")
index 380c57efccb9204c208def45de3affd6d49a0ce6..b3f7d1ab99e6409e7b13c99c7b31ab0411b834d0 100644 (file)
@@ -119,7 +119,7 @@ public abstract class GQ {
     if (jsonFactory == null) {
       try {
         // We use reflection because the server side should not
-        // depend on gwt-servlet nor gwt-dev. Hence if GWT is not 
+        // depend on gwt-servlet nor gwt-dev. Hence if GWT is not
         // in our classpath means that we are in server side, otherwise
         // we use GWT to figure out if we are running devmode.
         // This is run once, so no performance issues to worry about.
index 764c541e57d03c62396f36c6b3281ecd67e7df47..ac11b11973bcf58055312195200bacac18b9430a 100644 (file)
@@ -59,7 +59,7 @@ public interface IsProperties {
   String toJson();
 
   /**
-   * return a string which represents the object with an alias for the 
+   * return a string which represents the object with an alias for the
    * className useful for serialization.
    * 
    * Example {"user":{"name":"manolo","surname":"carrasco"}}
@@ -78,7 +78,7 @@ public interface IsProperties {
 
   /**
    * converts a JsonBuilder instance into another JsonBuilder type but
-   * preserving the underlying data object. 
+   * preserving the underlying data object.
    */
   <T extends JsonBuilder> T as (Class<T> clz);
 }
index 56c22b43ee9117ce1799b65f59ed0b3520ad8c43..2734458e5d86c9e8e93e238a2961a515e6b40636 100644 (file)
@@ -16,12 +16,12 @@ package com.google.gwt.query.client;
 import com.google.gwt.query.client.Function;
 
 /**
- * Definition of jquery Promise interface used in gquery. 
+ * Definition of jquery Promise interface used in gquery.
  */
 public interface Promise {
 
   /**
-   * Definition of jquery Deferred interface used in gquery. 
+   * Definition of jquery Deferred interface used in gquery.
    */
   public interface Deferred {
     /**
@@ -67,7 +67,7 @@ public interface Promise {
   /**
    * Utility method to filter and/or chain Deferreds.
    * 
-   * @deprecated use 'then' instead. 
+   * @deprecated use 'then' instead.
    *   it was deprecated in jquery, and we maintain it here for compatibility.
    */
   @Deprecated
@@ -97,7 +97,7 @@ public interface Promise {
    * @param f a list of 1, 2, or 3 functions, which will be used in this way:
    *   1st function will be called when the deferred is resolved.
    *   2nd function that is called when the deferred is rejected.
-   *   3rd one will be called when progress notifications are sent.  
+   *   3rd one will be called when progress notifications are sent.
    */
   Promise then(Function... f);
 
@@ -105,7 +105,7 @@ public interface Promise {
    * Add filters to be called just in case the Deferred object is rejected returning
    * a new valid promise so as we can continue the flow control of the chain.
    *
-   * It works in the same way than adding a second parameter to {@link then} method but 
+   * It works in the same way than adding a second parameter to {@link then} method but
    * continuing the flow and making more readable the code.
    *
    * Example:
index 68d9764f6a2aecb7e34bc7dbed35fe5fb2416c9f..efc930eb6ea52d8ae589098670f7d43ed319eff9 100644 (file)
@@ -34,7 +34,7 @@ public class SelectorEngineNativeMin extends SelectorEngineImpl {
     try {
       return SelectorEngine.querySelectorAllImpl(selector, ctx);
     } catch (Exception e) {
-      console.error("GwtQuery: Selector '" + selector + 
+      console.error("GwtQuery: Selector '" + selector +
           "' is unsupported in this SelectorEngineNativeMin engine."
           + " Do not use this syntax or configure your module to use a JS fallback. " + e.getMessage());
       return null;
index 9154fa11a1f0218e9aa55235088610bcf6cdd671..89822ef0253342d13abf19527dd263e9cf8e988c 100644 (file)
@@ -134,7 +134,7 @@ public class QueuePlugin<T extends QueuePlugin<?>> extends GQuery {
   }
 
   /**
-   * Returns a dynamically generated Promise that is resolved once all actions 
+   * Returns a dynamically generated Promise that is resolved once all actions
    * in the queue have ended.
    */
   public Promise promise() {
@@ -142,7 +142,7 @@ public class QueuePlugin<T extends QueuePlugin<?>> extends GQuery {
   }
 
   /**
-   * Returns a dynamically generated Promise that is resolved once all actions 
+   * Returns a dynamically generated Promise that is resolved once all actions
    * in the named queue have ended.
    */
   public Promise promise(final String name) {
@@ -155,7 +155,7 @@ public class QueuePlugin<T extends QueuePlugin<?>> extends GQuery {
       // Inner functions don't have constructors, we use a block to initialize it
       {
         for (Element elem: elements()) {
-          // Add this resolve function only to those elements with active queue 
+          // Add this resolve function only to those elements with active queue
           if (queue(elem, name, null) != null) {
             emptyHooks(elem, name).add(this);
             count++;
index 11489dd505e74fd0e932df1bf3729e386003f8b6..4fc1cba70804b91aeac856475c5f9cc9e204b8c7 100644 (file)
@@ -264,7 +264,7 @@ public class Ajax extends GQuery {
 
   public static Settings createSettings(String prop) {
     Settings s = GQ.create(Settings.class);
-    if (prop != null && !prop.isEmpty()) 
+    if (prop != null && !prop.isEmpty())
       s.parse(prop);
     return s;
   }
index 9ca2cdec9df1326136c6faca3a8e980e73f02a0e..24654b53fe556aec86bd5455c61007f6daaae58c 100644 (file)
@@ -25,13 +25,13 @@ import com.google.gwt.query.client.Function;
 public class Callbacks {
 
   /**
-   * Iterface used for callbacks which could cancel the execution 
+   * Iterface used for callbacks which could cancel the execution
    * when returning false;
    *
    */
   public static interface Callback {
     /**
-     * Return false to avoid executing the rest of functions 
+     * Return false to avoid executing the rest of functions
      */
     boolean f(Object ...objects);
   }
@@ -143,7 +143,7 @@ public class Callbacks {
         run(c, memory.toArray());
       }
     }
-  }  
+  }
 
   @SuppressWarnings({"unchecked", "rawtypes"})
   private boolean run(Object c, Object...o) {
index b4beee979e325500c62bcf93eecabc2c71940b8d..38a03632a05ef0f5a9b2099e40fa837bf51aacde 100644 (file)
@@ -17,7 +17,7 @@ import com.google.gwt.query.client.Function;
 import com.google.gwt.query.client.Promise.Deferred;
 
 /**
- * Utility class used to create customized functions with a deferred 
+ * Utility class used to create customized functions with a deferred
  * execution in pipelined processes.
  * 
  * They have access to the associated deferred object via a method which
@@ -61,7 +61,7 @@ public abstract class FunctionDeferred extends Function {
 
   /**
    * This function is called when the previous promise in the pipe
-   * is resolved. 
+   * is resolved.
    */
   public final Object f(Object... args) {
     return  dfd != null &&
index 356a94b5eab53982914b5c5ba16eae50f2b9264b..5ca5c15447c71c8fd49c1c089445e389fd84abae 100644 (file)
@@ -26,7 +26,7 @@ import com.google.gwt.query.client.plugins.deferred.Deferred.DeferredPromiseImpl
  *        dfd.resolve("done");
  *      }
  *    };
- *    
+ * 
  *    doSomething.progress(new Function() {
  *      public void f() {
  *        String hi = arguments(0);
index 2785e17f5407dec849134058e114326ed10e525c..1c2f333835160567c3f65a800be8fd55c4f82aaf 100644 (file)
@@ -20,10 +20,10 @@ import com.google.gwt.user.client.rpc.AsyncCallback;
  * Utility class used to create promises for RPC services.
  * <pre>
  *        PromiseRPC<String> greeting = new PromiseRPC<String>();
- *        
+ * 
  *        GreetingServiceAsync greetingService = GWT.create(GreetingService.class);
  *        greetingService.greetServer("hi", greeting);
- *        
+ * 
  *        greeting.fail(new Function(){
  *          public void f() {
  *            Throwable error = arguments(0);
index 606b8a6d6a4578f9990b2e4dce3c8487a998a0bc..6bb96f83c5fcbc740d4dd2a2bae9b32a9d688176 100644 (file)
@@ -23,7 +23,7 @@ import com.google.gwt.user.client.rpc.AsyncCallback;
  * Utility class used to create promises for JsonpRequestBuilder.
  * <pre>
  *    Promise p = new PromiseJsonpReqBuilder(url, 4000);
- *    
+ * 
  *    p.done(new Function() {
  *      public void f() {
  *        Properties p = arguments(0);
index 97ef895b65ddaec2ab147f2049e4f668b1966291..ddb865ab06837266d2cc86c7ee69f066ff6e4c11 100644 (file)
@@ -54,7 +54,7 @@ public class Fx {
     }
 
     public String toString() {
-      return super.toString() + " transitStart=" + transitStart + " transitEnd=" + transitEnd; 
+      return super.toString() + " transitStart=" + transitStart + " transitEnd=" + transitEnd;
     }
   }
 
@@ -105,7 +105,7 @@ public class Fx {
     private static JsNamedArray<int[]> htmlColorToRgb;
 
     // rgb and rgba regex
-    public static RegExp REGEX_RGB_COLOR_PATTERN = 
+    public static RegExp REGEX_RGB_COLOR_PATTERN =
         RegExp.compile("rgba?\\(\\s*([0-9]{1,3}%?)\\s*,\\s*([0-9]{1,3}%?)\\s*,\\s*([0-9]{1,3}%?).*\\)$");
 
     static {
index 59868d366561f44b1a382dc814ea2a50e7dde842..fbc2501376f464cddf570827e829e0d7d9f31532 100644 (file)
@@ -401,7 +401,7 @@ public class EventsListener implements EventListener {
 
   /**
    * We have to set the gQuery event listener to the element again when
-   * the element is a widget, because when GWT detaches a widget it removes the 
+   * the element is a widget, because when GWT detaches a widget it removes the
    * event listener.
    */
   public static void rebind(Element e) {
index 53a03a7bbb05a4c47966ead8e42eee878070db26..200cb8c92eb1ec5fb2e5c38fd518bb3cd7387014 100644 (file)
@@ -256,7 +256,7 @@ public class WidgetsUtils {
 
    /**
     * Return the first widget parent of the element, or null if it is not
-    * attached to any widget yet. 
+    * attached to any widget yet.
     */
    private static Widget getFirstParentWidgetElement(Element element) {
      return $(element).parents().widget();
index 01f959173f076ff7cd2f0c08dd43376c1b9371b7..861f6c194587e4aff1ca4b04333cd8aab332343f 100644 (file)
@@ -74,7 +74,7 @@ public class BrowserGenerator extends Generator {
           " + \" msie=\" + msie" +
           " + \" ie6=\" + ie6" +
           " + \" ie8=\" + ie8" +
-          " + \" ie9=\" + ie9" +  
+          " + \" ie9=\" + ie9" +
           ";}");
       writer.commit(logger);
     }
index eecd20d10fbd07a8300e64dd6835ff493a924e26..6951b005b02fc22614cc4dfda96070742c115bee 100644 (file)
@@ -31,12 +31,12 @@ import com.google.web.bindery.requestfactory.shared.ServerFailure;
  * <pre>
  *    Request<SessionProxy> req1 = loginFact.api().login(null, null);
  *    Request<UserProxy> req2 = srvFact.api().getCurrentUser();
- *    
+ * 
  *    // We can use `when` to append different requests
  *    Promise requestingAll = Deferred.when(new PromiseRF(req1), new PromiseRF(req2);
  *    // Or we can use just one promise for multiple RF requests
  *    Promise requestingAll = new PromiseRF(req1, req2);
- *    
+ * 
  *    requestingAll.done(new Function() {
  *        public void f() {
  *          SessionProxy session = arguments(0, 0);
@@ -47,7 +47,7 @@ import com.google.web.bindery.requestfactory.shared.ServerFailure;
  *        public void f() {
  *          ServerFailure failure = arguments(0);
  *        }
- *      }); 
+ *      });
  * </pre>
  */
 public class PromiseRF extends DeferredPromiseImpl {