]> source.dussan.org Git - vaadin-framework.git/commitdiff
Replace non-breaking spaces with space (#7957)
authorArtur <artur@vaadin.com>
Wed, 14 Dec 2016 07:47:45 +0000 (09:47 +0200)
committerPekka Hyvönen <pekka@vaadin.com>
Wed, 14 Dec 2016 07:47:45 +0000 (09:47 +0200)
12 files changed:
client/src/main/java/com/vaadin/client/connectors/GridConnector.java
client/src/main/java/com/vaadin/client/extensions/ResponsiveConnector.java
server/src/main/java/com/vaadin/data/validator/CompositeValidator.java
server/src/main/java/com/vaadin/navigator/Navigator.java
server/src/main/java/com/vaadin/server/ErrorMessage.java
server/src/main/java/com/vaadin/server/Sizeable.java
server/src/main/java/com/vaadin/server/UserError.java
server/src/main/java/com/vaadin/server/communication/AtmospherePushConnection.java
server/src/main/java/com/vaadin/ui/Embedded.java
server/src/main/java/com/vaadin/ui/Grid.java
server/src/main/java/com/vaadin/ui/PopupView.java
uitest/src/main/java/com/vaadin/tests/components/gridlayout/GridLayoutCaptionAlignment.java

index e329d4a4c812065c36e57a80e13a77bac14b4eb5..c1af71580e7c8a94d34694ad6425a013edeb91ae 100644 (file)
@@ -153,7 +153,7 @@ public class GridConnector extends AbstractHasComponentsConnector
     }
 
     /**
-     * Custom implementation of the custom grid column using a JSONObject to
+     * Custom implementation of the custom grid column using a JSONObject to
      * represent the cell value and String as a column type.
      */
     private class CustomGridColumn extends Grid.Column<Object, JsonObject> {
index 864a948a1e326ffdb4b51a3850a027901de17a58..70cf9a2177331ad7e03f7c9c147bda542a06d8a4 100644 (file)
@@ -241,7 +241,7 @@ public class ResponsiveConnector extends AbstractExtensionConnector
                 // @import rule, traverse recursively
                 @com.vaadin.client.extensions.ResponsiveConnector::searchStylesheetForBreakPoints(Lcom/google/gwt/core/client/JavaScriptObject;)(rule.styleSheet);
 
-            } else if(rule.type == 1 || !rule.type) {
+            } else if(rule.type == 1 || !rule.type) {
                 // Regular selector rule
 
                 // Helper function
index e5ccbccab7600901c9e74c9bd046d3d458f562a7..d3988d339e453b303ca33752159b647ac3c1c03f 100644 (file)
@@ -52,12 +52,12 @@ public class CompositeValidator implements Validator {
     }
 
     /**
-     * @deprecated As of 7.0, use {@link CombinationMode#AND} instead    
+     * @deprecated As of 7.0, use {@link CombinationMode#AND} instead    
      */
     @Deprecated
     public static final CombinationMode MODE_AND = CombinationMode.AND;
     /**
-     * @deprecated As of 7.0, use {@link CombinationMode#OR} instead    
+     * @deprecated As of 7.0, use {@link CombinationMode#OR} instead    
      */
     @Deprecated
     public static final CombinationMode MODE_OR = CombinationMode.OR;
index 88f25d112b820acb9856ed8f2381ceceaa75ca11..15936f61684a42287015b2b36c9559be62d9e9d1 100644 (file)
@@ -388,7 +388,7 @@ public class Navigator implements Serializable {
      * active {@link View}. Views must implement {@link Component} when using
      * this constructor.
      * <p>
-     * Navigation is automatically initiated after {@code UI.init()} if a
+     * Navigation is automatically initiated after {@code UI.init()} if a
      * navigator was created. If at a later point changes are made to the
      * navigator, {@code navigator.navigateTo(navigator.getState())} may need to
      * be explicitly called to ensure the current view matches the navigation
@@ -411,7 +411,7 @@ public class Navigator implements Serializable {
      * <p>
      * Views must implement {@link Component} when using this constructor.
      * <p>
-     * Navigation is automatically initiated after {@code UI.init()} if a
+     * Navigation is automatically initiated after {@code UI.init()} if a
      * navigator was created. If at a later point changes are made to the
      * navigator, {@code navigator.navigateTo(navigator.getState())} may need to
      * be explicitly called to ensure the current view matches the navigation
@@ -431,7 +431,7 @@ public class Navigator implements Serializable {
      * Creates a navigator that is tracking the active view using URI fragments
      * of the {@link Page} containing the given UI.
      * <p>
-     * Navigation is automatically initiated after {@code UI.init()} if a
+     * Navigation is automatically initiated after {@code UI.init()} if a
      * navigator was created. If at a later point changes are made to the
      * navigator, {@code navigator.navigateTo(navigator.getState())} may need to
      * be explicitly called to ensure the current view matches the navigation
@@ -452,7 +452,7 @@ public class Navigator implements Serializable {
      * When a custom navigation state manager is not needed, use one of the
      * other constructors which use a URI fragment based state manager.
      * <p>
-     * Navigation is automatically initiated after {@code UI.init()} if a
+     * Navigation is automatically initiated after {@code UI.init()} if a
      * navigator was created. If at a later point changes are made to the
      * navigator, {@code navigator.navigateTo(navigator.getState())} may need to
      * be explicitly called to ensure the current view matches the navigation
@@ -489,7 +489,7 @@ public class Navigator implements Serializable {
      * When a custom navigation state manager is not needed, use null to create
      * a default one based on URI fragments.
      * <p>
-     * Navigation is automatically initiated after {@code UI.init()} if a
+     * Navigation is automatically initiated after {@code UI.init()} if a
      * navigator was created. If at a later point changes are made to the
      * navigator, {@code navigator.navigateTo(navigator.getState())} may need to
      * be explicitly called to ensure the current view matches the navigation
index 26bdb123efc8b9fcec0d28889ef2e49f04ed2ff6..48ce3a78df70252d4802027224978f96847f5a85 100644 (file)
@@ -83,32 +83,32 @@ public interface ErrorMessage extends Serializable {
     }
 
     /**
-     * @deprecated As of 7.0, use {@link ErrorLevel#SYSTEMERROR} instead    
+     * @deprecated As of 7.0, use {@link ErrorLevel#SYSTEMERROR} instead    
      */
     @Deprecated
     public static final ErrorLevel SYSTEMERROR = ErrorLevel.SYSTEMERROR;
 
     /**
-     * @deprecated As of 7.0, use {@link ErrorLevel#CRITICAL} instead    
+     * @deprecated As of 7.0, use {@link ErrorLevel#CRITICAL} instead    
      */
     @Deprecated
     public static final ErrorLevel CRITICAL = ErrorLevel.CRITICAL;
 
     /**
-     * @deprecated As of 7.0, use {@link ErrorLevel#ERROR} instead    
+     * @deprecated As of 7.0, use {@link ErrorLevel#ERROR} instead    
      */
 
     @Deprecated
     public static final ErrorLevel ERROR = ErrorLevel.ERROR;
 
     /**
-     * @deprecated As of 7.0, use {@link ErrorLevel#WARNING} instead    
+     * @deprecated As of 7.0, use {@link ErrorLevel#WARNING} instead    
      */
     @Deprecated
     public static final ErrorLevel WARNING = ErrorLevel.WARNING;
 
     /**
-     * @deprecated As of 7.0, use {@link ErrorLevel#INFORMATION} instead    
+     * @deprecated As of 7.0, use {@link ErrorLevel#INFORMATION} instead    
      */
     @Deprecated
     public static final ErrorLevel INFORMATION = ErrorLevel.INFORMATION;
index dfdbc6d9d4a9fd50555e645c9894c20949741291..9b155760add309df4fb10df20cc62c4be1306cce 100644 (file)
@@ -28,55 +28,55 @@ import java.io.Serializable;
 public interface Sizeable extends Serializable {
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#PIXELS} instead    
+     * @deprecated As of 7.0, use {@link Unit#PIXELS} instead    
      */
     @Deprecated
     public static final Unit UNITS_PIXELS = Unit.PIXELS;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#POINTS} instead    
+     * @deprecated As of 7.0, use {@link Unit#POINTS} instead    
      */
     @Deprecated
     public static final Unit UNITS_POINTS = Unit.POINTS;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#PICAS} instead    
+     * @deprecated As of 7.0, use {@link Unit#PICAS} instead    
      */
     @Deprecated
     public static final Unit UNITS_PICAS = Unit.PICAS;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#EM} instead    
+     * @deprecated As of 7.0, use {@link Unit#EM} instead    
      */
     @Deprecated
     public static final Unit UNITS_EM = Unit.EM;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#EX} instead    
+     * @deprecated As of 7.0, use {@link Unit#EX} instead    
      */
     @Deprecated
     public static final Unit UNITS_EX = Unit.EX;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#MM} instead    
+     * @deprecated As of 7.0, use {@link Unit#MM} instead    
      */
     @Deprecated
     public static final Unit UNITS_MM = Unit.MM;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#CM} instead    
+     * @deprecated As of 7.0, use {@link Unit#CM} instead    
      */
     @Deprecated
     public static final Unit UNITS_CM = Unit.CM;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#INCH} instead    
+     * @deprecated As of 7.0, use {@link Unit#INCH} instead    
      */
     @Deprecated
     public static final Unit UNITS_INCH = Unit.INCH;
 
     /**
-     * @deprecated As of 7.0, use {@link Unit#PERCENTAGE} instead    
+     * @deprecated As of 7.0, use {@link Unit#PERCENTAGE} instead    
      */
     @Deprecated
     public static final Unit UNITS_PERCENTAGE = Unit.PERCENTAGE;
index 6ffc04d0d7abac49abfde1413c90d5e88f497cb6..5a82d870c060144aa895590f153c5b705bf3448f 100644 (file)
@@ -27,19 +27,19 @@ package com.vaadin.server;
 public class UserError extends AbstractErrorMessage {
 
     /**
-     * @deprecated As of 7.0, use {@link ContentMode#TEXT} instead    
+     * @deprecated As of 7.0, use {@link ContentMode#TEXT} instead    
      */
     @Deprecated
     public static final ContentMode CONTENT_TEXT = ContentMode.TEXT;
 
     /**
-     * @deprecated As of 7.0, use {@link ContentMode#PREFORMATTED} instead    
+     * @deprecated As of 7.0, use {@link ContentMode#PREFORMATTED} instead    
      */
     @Deprecated
     public static final ContentMode CONTENT_PREFORMATTED = ContentMode.PREFORMATTED;
 
     /**
-     * @deprecated As of 7.0, use {@link ContentMode#HTML} instead    
+     * @deprecated As of 7.0, use {@link ContentMode#HTML} instead    
      */
     @Deprecated
     public static final ContentMode CONTENT_XHTML = ContentMode.HTML;
index 19f05723009528c6bef5e2e131402c08208f7e45..a5f785b0a87634540b9822ca3d29747b57c9e117 100644 (file)
@@ -148,7 +148,7 @@ public class AtmospherePushConnection implements PushConnection {
 
     /**
      * Pushes pending state changes and client RPC calls to the client. If
-     * {@code isConnected()} is false, defers the push until a connection is
+     * {@code isConnected()} is false, defers the push until a connection is
      * established.
      *
      * @param async
index 8431faa83acf4218a083013af1c25bb602ab9c9c..a1e5a553742f0604933f94754fbef7950cfd4189 100644 (file)
@@ -38,7 +38,7 @@ import com.vaadin.shared.ui.embedded.EmbeddedServerRpc;
  * Java applets, and QuickTime videos. Installing a browser plug-in is usually
  * required to actually view the embedded content.
  * <p>
- * Note that before Vaadin 7, {@code Embedded} was also used to display images,
+ * Note that before Vaadin 7, {@code Embedded} was also used to display images,
  * Adobe Flash objects, and embedded web pages. This use of the component is
  * deprecated in Vaadin 7; the {@link Image}, {@link Flash}, and
  * {@link BrowserFrame} components should be used instead, respectively.
index 6831d215a429dbef37397377173cbc5c68af08dd..2cccc51212faf902da75ab60a567ea10082138b2 100644 (file)
@@ -2127,7 +2127,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
     /**
      * A callback interface for generating optional descriptions (tooltips) for
      * Grid cells. If a cell has both a {@link RowDescriptionGenerator row
-     * description} and a cell description, the latter has precedence.
+     * description} and a cell description, the latter has precedence.
      *
      * @see Grid#setCellDescriptionGenerator(CellDescriptionGenerator)
      *
index 04598d4aa669f5c95ada1ed39604efc5880c8fa8..1a9cc6f5046b8d6e540dd7abf2b3d69d8a8dd042 100644 (file)
@@ -68,7 +68,7 @@ public class PopupView extends AbstractComponent implements HasComponents {
 
     /**
      * This is an internal constructor. Use
-     * {@link PopupView#PopupView(String, Component)} instead.
+     * {@link PopupView#PopupView(String, Component)} instead.
      *
      * @since 7.5.0
      */
index a00163e5042964495c823ed0b34b3e993aa25616..bdc1a47a22d19b3d7deea9f795c8e5abb7b7aaed 100644 (file)
@@ -53,7 +53,7 @@ public class GridLayoutCaptionAlignment extends AbstractTestUI {
 
     @Override
     protected String getTestDescription() {
-        return "Test alignment of component captions inside GridLayout – "
+        return "Test alignment of component captions inside GridLayout – "
                 + "all captions should be aligned directly above the TextField components.";
     }