Skip to content

Commit

Permalink
Add missing since tag (#11957)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZheSun88 authored Apr 23, 2020
1 parent 2497276 commit 14f6f3b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions server/src/main/java/com/vaadin/data/Binder.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public default BindingValidationStatus<TARGET> validate() {
*
* @param validatorsDisabled A boolean value
*
* @since
* @since 8.11
*/
public void setValidatorsDisabled(boolean validatorsDisabled);

Expand All @@ -270,7 +270,7 @@ public default BindingValidationStatus<TARGET> validate() {
*
* @return A boolean value
*
* @since
* @since 8.11
*/
public boolean isValidatorsDisabled();
}
Expand Down Expand Up @@ -1925,7 +1925,7 @@ public void writeBeanAsDraft(BEAN bean) {
* {@code null}
* @param forced
* disable all Validators during write
* @since
* @since 8.11
*/
public void writeBeanAsDraft(BEAN bean, boolean forced) {
doWriteDraft(bean, new ArrayList<>(bindings),forced);
Expand Down Expand Up @@ -3123,7 +3123,7 @@ public void removeBinding(String propertyName) {
*
* @param validatorsDisabled Boolean value
*
* @since
* @since 8.11
*/
public void setValidatorsDisabled(boolean validatorsDisabled) {
this.validatorsDisabled = validatorsDisabled;
Expand All @@ -3135,7 +3135,7 @@ public void setValidatorsDisabled(boolean validatorsDisabled) {
*
* @return Boolean value
*
* @since
* @since 8.11
*/
public boolean isValidatorsDisabled() {
return validatorsDisabled;
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/java/com/vaadin/server/Sizeable.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,14 +257,14 @@ public static Unit getUnitFromSymbol(String symbol) {
/**
* Sets the width to 100%.
*
* @since
* @since 8.11
*/
public void setWidthFull();

/**
* Sets the height to 100%.
*
* @since
* @since 8.11
*/
public void setHeightFull();

Expand Down
4 changes: 2 additions & 2 deletions server/src/main/java/com/vaadin/ui/Upload.java
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ public String getButtonStyleName() {
*
* @return {@code true} if the caption is rendered as HTML, {@code false} if
* rendered as plain text
* @since
* @since 8.11
*/
public boolean isButtonCaptionAsHtml() {
return getState(false).buttonCaptionAsHtml;
Expand Down Expand Up @@ -1057,7 +1057,7 @@ public void setButtonStyleName(String buttonStyleName) {
* @param buttonCaptionAsHtml
* {@code true} if the caption is rendered as HTML, {@code false}
* if rendered as plain text
* @since
* @since 8.11
*/
public void setButtonCaptionAsHtml(boolean buttonCaptionAsHtml) {
getState().buttonCaptionAsHtml = buttonCaptionAsHtml;
Expand Down

0 comments on commit 14f6f3b

Please sign in to comment.