]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add @since 8.4 (#10840)
authorIlia Motornyi <elmot@vaadin.com>
Fri, 20 Apr 2018 13:37:52 +0000 (16:37 +0300)
committerGitHub <noreply@github.com>
Fri, 20 Apr 2018 13:37:52 +0000 (16:37 +0300)
client/src/main/java/com/vaadin/client/ui/VColorPicker.java
client/src/main/java/com/vaadin/client/ui/VColorPickerArea.java
server/src/main/java/com/vaadin/ui/ComponentRootSetter.java
server/src/main/java/com/vaadin/ui/components/colorpicker/ColorPickerPreview.java
server/src/main/java/com/vaadin/ui/components/colorpicker/ColorUtil.java
shared/src/main/java/com/vaadin/shared/ui/colorpicker/ColorPickerServerRpc.java
testbench-api/src/main/java/com/vaadin/testbench/elements/ColorPickerPreviewElement.java
testbench-api/src/main/java/com/vaadin/testbench/elements/RichTextAreaElement.java

index c525eaabab5f3385125f479fb67d4a504bcbf90b..707e095889cf6c15a1da00626b9bd4ca7929e801 100644 (file)
@@ -50,7 +50,7 @@ public class VColorPicker extends VButton {
     /**
      * Gets the color.
      *
-     * @since
+     * @since 8.4
      * @return the color
      */
     public String getColor() {
index a1b6a8de3462cc7e64db7e7e5bed3fac740f0afd..72d1acb3f50dc077c5a87852239cac41e385e274 100644 (file)
@@ -167,7 +167,7 @@ public class VColorPickerArea extends Widget
     /**
      * Gets the color.
      *
-     * @since
+     * @since 8.4
      * @return the color
      */
     public String getColor() {
index aea60e0f41216952b655ba5b3e0d3e2d4386596d..fe0a8e6a884e6fa8171d1e434a2ed397e8b2f124 100644 (file)
@@ -59,7 +59,7 @@ public class ComponentRootSetter implements Serializable {
      * @param customComponent
      *            the custom component or composite
      * @return
-     * @since
+     * @since 8.4
      *
      */
     public static boolean canSetRoot(Component customComponent) {
index 57da8949bdeb1c5e3d6a74a1963fe5b160ec43fa..8c7af4273a0166fb07dfdd8de3abc4453da95482 100644 (file)
@@ -201,6 +201,7 @@ public class ColorPickerPreview extends CssLayout implements HasValue<Color> {
      * @param value
      *            input which caused the error
      * @return error message text
+     * @since 8.4
      */
     protected String getUserErrorText(String value) {
         return value.isEmpty() ? "Input cannot be empty"
index ae942ea0ce545c10c941c5f46a830107b9282008..a23172bac68d2f5966e7d709c40685cc52323814 100644 (file)
@@ -27,7 +27,7 @@ import com.vaadin.shared.ui.colorpicker.Color;
  * Description of supported formats see
  * http://www.w3schools.com/cssref/css_colors_legal.asp
  *
- * @since
+ * @since 8.4
  */
 public class ColorUtil {
     private ColorUtil() {
index de6c4e30ae82b1ebc6c6333e89abab961d38e368..b7bba9b9458dcb6c586843b8c2e414d494a6b7c8 100644 (file)
@@ -36,7 +36,7 @@ public interface ColorPickerServerRpc extends ServerRpc {
     /**
      * ColorPicker's selected color is changed
      *
-     * @since
+     * @since 8.4
      * @param color
      */
     public void changeColor(String color);
index d733e7a531a0bf6eb835bfe94dbb51e67d5bcbe4..632052e632311ff2de480cd652a20a2b067427aa 100644 (file)
@@ -31,7 +31,7 @@ public class ColorPickerPreviewElement extends CssLayoutElement {
      *
      * @return true if field has errors, false otherwise
      *
-     * @since
+     * @since 8.4
      */
     public boolean getColorFieldContainsErrors() {
         List<WebElement> caption = findElements(
@@ -47,7 +47,7 @@ public class ColorPickerPreviewElement extends CssLayoutElement {
      *
      * @return the value of the attribute 'value' of the input element
      *
-     * @since
+     * @since 8.4
      */
     public String getColorFieldValue() {
         return getColorTextField().getAttribute("value");
@@ -60,7 +60,7 @@ public class ColorPickerPreviewElement extends CssLayoutElement {
      * @param value
      *            text to insert
      *
-     * @since
+     * @since 8.4
      */
     public void setColorTextFieldValue(String value) {
         // Select all text
@@ -72,7 +72,7 @@ public class ColorPickerPreviewElement extends CssLayoutElement {
      * @return <code>WebElement</code> representing TextField in
      *         ColorPickerPreviewComponent
      * 
-     * @since
+     * @since 8.4
      */
     public WebElement getColorTextField() {
         return findElement(By.className("v-colorpicker-preview-textfield"));
index d6ce571f01d65c584ec8a39049f0053e449e3fb8..aa7a5377729becf9f6be62065f36e888d528433e 100644 (file)
@@ -39,7 +39,7 @@ public class RichTextAreaElement extends AbstractFieldElement {
      * Return value of the field element.
      *
      * @return value of the field element
-     * @since
+     * @since 8.4
      */
     public String getValue() {
         JavascriptExecutor executor = (JavascriptExecutor) getDriver();
@@ -53,7 +53,7 @@ public class RichTextAreaElement extends AbstractFieldElement {
      *
      * @param chars
      *            new value of the field
-     * @since
+     * @since 8.4
      */
     public void setValue(CharSequence chars) throws ReadOnlyException {
         if (isReadOnly()) {