diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-18 09:31:40 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-18 09:31:40 +0300 |
commit | eeffa805a212ebb25c4af18db1e927b23a3ad66a (patch) | |
tree | 3bfdb4ef4b8e9b6e9e45c77c90b4f31eba1af94e /server/src/main/java/com/vaadin/ui/RichTextArea.java | |
parent | 6d54d78944f6c3278eed3bb5e7ee19687ee5714e (diff) | |
download | vaadin-framework-eeffa805a212ebb25c4af18db1e927b23a3ad66a.tar.gz vaadin-framework-eeffa805a212ebb25c4af18db1e927b23a3ad66a.zip |
Remove trailing whitespace from code and javadoc
Change-Id: I4c852b7f9928e190572876690d5bef1234494a5d
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/RichTextArea.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/RichTextArea.java | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/server/src/main/java/com/vaadin/ui/RichTextArea.java b/server/src/main/java/com/vaadin/ui/RichTextArea.java index ea3adfba47..07f33355d1 100644 --- a/server/src/main/java/com/vaadin/ui/RichTextArea.java +++ b/server/src/main/java/com/vaadin/ui/RichTextArea.java @@ -1,12 +1,12 @@ /* * Copyright 2000-2014 Vaadin Ltd. - * + * * 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 * the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the @@ -30,7 +30,7 @@ import com.vaadin.ui.declarative.DesignContext; /** * A simple RichTextArea to edit HTML format text. - * + * * Note, that using {@link LegacyTextField#setMaxLength(int)} method in * {@link RichTextArea} may produce unexpected results as formatting is counted * into length of field. @@ -63,9 +63,9 @@ public class RichTextArea extends LegacyAbstractField<String> } /** - * + * * Constructs an empty <code>RichTextArea</code> with the given caption. - * + * * @param caption * the caption for the editor. */ @@ -77,7 +77,7 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Constructs a new <code>RichTextArea</code> that's bound to the specified * <code>Property</code> and has no caption. - * + * * @param dataSource * the data source for the editor value */ @@ -88,7 +88,7 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Constructs a new <code>RichTextArea</code> that's bound to the specified * <code>Property</code> and has the given caption. - * + * * @param caption * the caption for the editor. * @param dataSource @@ -102,7 +102,7 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Constructs a new <code>RichTextArea</code> with the given caption and * initial text contents. - * + * * @param caption * the caption for the editor. * @param value @@ -148,7 +148,7 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Selects all text in the rich text area. As a side effect, focuses the * rich text area. - * + * * @since 6.5 */ public void selectAll() { @@ -201,17 +201,17 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Gets the null-string representation. - * + * * <p> * The null-valued strings are represented on the user interface by * replacing the null value with this string. If the null representation is * set null (not 'null' string), painting null value throws exception. * </p> - * + * * <p> * The default value is string 'null'. * </p> - * + * * @return the String Textual representation for null strings. * @see LegacyTextField#isNullSettingAllowed() */ @@ -221,7 +221,7 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Is setting nulls with null-string representation allowed. - * + * * <p> * If this property is true, writing null-representation string to text * field always sets the field value to real null. If this property is @@ -230,11 +230,11 @@ public class RichTextArea extends LegacyAbstractField<String> * contents to real null, if the text field matches the null-string * representation and the current value of the field is null. * </p> - * + * * <p> * By default this setting is false * </p> - * + * * @return boolean Should the null-string represenation be always converted * to null-values. * @see LegacyTextField#getNullRepresentation() @@ -245,17 +245,17 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Sets the null-string representation. - * + * * <p> * The null-valued strings are represented on the user interface by * replacing the null value with this string. If the null representation is * set null (not 'null' string), painting null value throws exception. * </p> - * + * * <p> * The default value is string 'null' * </p> - * + * * @param nullRepresentation * Textual representation for null strings. * @see LegacyTextField#setNullSettingAllowed(boolean) @@ -266,7 +266,7 @@ public class RichTextArea extends LegacyAbstractField<String> /** * Sets the null conversion mode. - * + * * <p> * If this property is true, writing null-representation string to text * field always sets the field value to real null. If this property is @@ -275,11 +275,11 @@ public class RichTextArea extends LegacyAbstractField<String> * contents to real null, if the text field matches the null-string * representation and the current value of the field is null. * </p> - * + * * <p> * By default this setting is false. * </p> - * + * * @param nullSettingAllowed * Should the null-string represenation be always converted to * null-values. |