diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-02-16 11:38:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 11:38:39 +0200 |
commit | 4f047f06fad8882ac81e6770d6ebf022a8331196 (patch) | |
tree | b8733b706db2c3c3e528309264d452c8bc3c575a /server/src/main/java/com/vaadin/ui/RichTextArea.java | |
parent | 3841ea1f7309b068a0407031a6e745a3a0736aca (diff) | |
download | vaadin-framework-4f047f06fad8882ac81e6770d6ebf022a8331196.tar.gz vaadin-framework-4f047f06fad8882ac81e6770d6ebf022a8331196.zip |
Fix since tags for 8.0 (#8575)
Fix since tags for the server and shared modules and new types in client.
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/RichTextArea.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/RichTextArea.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/src/main/java/com/vaadin/ui/RichTextArea.java b/server/src/main/java/com/vaadin/ui/RichTextArea.java index b556a5281b..1497e78f77 100644 --- a/server/src/main/java/com/vaadin/ui/RichTextArea.java +++ b/server/src/main/java/com/vaadin/ui/RichTextArea.java @@ -18,7 +18,6 @@ package com.vaadin.ui; import java.util.Objects; -import elemental.json.Json; import org.jsoup.nodes.Element; import com.vaadin.shared.ui.ValueChangeMode; @@ -27,6 +26,8 @@ import com.vaadin.shared.ui.richtextarea.RichTextAreaServerRpc; import com.vaadin.shared.ui.richtextarea.RichTextAreaState; import com.vaadin.ui.declarative.DesignContext; +import elemental.json.Json; + /** * A simple RichTextArea to edit HTML format text. */ @@ -88,6 +89,7 @@ public class RichTextArea extends AbstractField<String> * * @param valueChangeListener * the value change listener, not {@code null} + * @since 8.0 */ public RichTextArea(ValueChangeListener<String> valueChangeListener) { addValueChangeListener(valueChangeListener); @@ -104,6 +106,7 @@ public class RichTextArea extends AbstractField<String> * the caption for the field * @param valueChangeListener * the value change listener, not {@code null} + * @since 8.0 */ public RichTextArea(String caption, ValueChangeListener<String> valueChangeListener) { @@ -124,6 +127,7 @@ public class RichTextArea extends AbstractField<String> * the value for the field, not {@code null} * @param valueChangeListener * the value change listener, not {@code null} + * @since 8.0 */ public RichTextArea(String caption, String value, ValueChangeListener<String> valueChangeListener) { |