Browse Source

Update since tags for TB elements (#9329)

tags/8.1.0.alpha8^0
Henri Sara 7 years ago
parent
commit
46422df01b

+ 0
- 1
compatibility-server/src/test/java/com/vaadin/v7/ui/AbstractLegacyComponentDeclarativeTest.java View File

@@ -44,7 +44,6 @@ import com.vaadin.ui.declarative.DesignContext;
/**
* Test cases for reading and writing the properties of AbstractComponent.
*
* @since
* @author Vaadin Ltd
*/
public class AbstractLegacyComponentDeclarativeTest

+ 2
- 2
testbench-api/src/main/java/com/vaadin/testbench/elements/AbstractComponentElement.java View File

@@ -26,8 +26,8 @@ public class AbstractComponentElement extends AbstractElement {
/**
* Returns the caption of the Component element
*
* @since
* @return
* @since 8.0
* @return component caption
*/
public String getCaption() {
final String GWT_ID_ATTRIBUTE = "aria-labelledby";

+ 1
- 1
testbench-api/src/main/java/com/vaadin/testbench/elements/AbstractFieldElement.java View File

@@ -28,7 +28,7 @@ public class AbstractFieldElement extends AbstractComponentElement {
*
* NOTE: When testing with firefox browser window should have focus in it
*
* @since
* @since 8.0
* @param elem
* element which context will be select
*/

+ 2
- 2
testbench-api/src/main/java/com/vaadin/testbench/elements/GridElement.java View File

@@ -431,7 +431,7 @@ public class GridElement extends AbstractComponentElement {
/**
* Gets the element that contains the details of a row.
*
* @since
* @since 8.0
* @param rowIndex
* the index of the row for the details
* @return the element that contains the details of a row. <code>null</code>
@@ -447,7 +447,7 @@ public class GridElement extends AbstractComponentElement {
/**
* Toggles the column visibility. Column is identified by its hiding toggle
* caption.
*
*
* @param toggleCaption
* @since 8.0.6
*/

+ 1
- 1
testbench-api/src/main/java/com/vaadin/testbench/elements/NotificationElement.java View File

@@ -47,7 +47,7 @@ public class NotificationElement extends AbstractElement {
/**
* Returns the caption of the Notification element
*
* @since
* @since 8.0
* @return the caption of the Notification element
*/
public String getCaption() {

+ 2
- 2
testbench-api/src/main/java/com/vaadin/testbench/elements/PasswordFieldElement.java View File

@@ -21,8 +21,8 @@ import com.vaadin.testbench.elementsbase.ServerClass;
public class PasswordFieldElement extends AbstractTextFieldElement {
/**
* Return value of the password element
*
* @since
*
* @since 8.0
* @return value of the password element
*/
@Override

+ 1
- 1
testbench-api/src/main/java/com/vaadin/testbench/elements/TextAreaElement.java View File

@@ -24,7 +24,7 @@ public class TextAreaElement extends AbstractTextFieldElement {
/**
* Return value of the field element
*
* @since
* @since 8.0
* @return value of the field element
*/
@Override

Loading…
Cancel
Save