Browse Source

Add missing 8.13 since tag (#12236)

tags/8.13.0.alpha1
Zhe Sun 3 years ago
parent
commit
b773d40aba
No account linked to committer's email address

+ 1
- 1
client/src/main/java/com/vaadin/client/LayoutManager.java View File

* @param thoroughSizeCheck * @param thoroughSizeCheck
* {@code true} if thorough size check enabled, {@code false} if * {@code true} if thorough size check enabled, {@code false} if
* not * not
* @since
* @since 8.13
*/ */
public void setThoroughSizeChck(boolean thoroughSizeCheck) { public void setThoroughSizeChck(boolean thoroughSizeCheck) {
this.thoroughSizeCheck = thoroughSizeCheck; this.thoroughSizeCheck = thoroughSizeCheck;

+ 1
- 1
client/src/main/java/com/vaadin/client/widget/escalator/RowContainer.java View File

* Updates the spacer corresponding with the given rowIndex to currently * Updates the spacer corresponding with the given rowIndex to currently
* provided contents. * provided contents.
* *
* @since
* @since 8.13
* @param rowIndex * @param rowIndex
* the row index for the spacer in need of updating * the row index for the spacer in need of updating
*/ */

+ 1
- 1
client/src/main/java/com/vaadin/client/widgets/Grid.java View File

/** /**
* Reset the details row with current contents. * Reset the details row with current contents.
* *
* @since
* @since 8.13
* @param rowIndex * @param rowIndex
* the index of the row for which details should be reset * the index of the row for which details should be reset
*/ */

+ 1
- 1
server/src/main/java/com/vaadin/ui/Grid.java View File

* *
* @return the presentation provider function * @return the presentation provider function
* *
* @since
* @since 8.13
*/ */
public ValueProvider<V, ?> getPresentationProvider() { public ValueProvider<V, ?> getPresentationProvider() {
return presentationProvider; return presentationProvider;

+ 2
- 2
server/src/main/java/com/vaadin/ui/UI.java View File

* By default, the thorough size check is enabled. * By default, the thorough size check is enabled.
* *
* @return {@code true} if thorough size check enabled, {@code false} if not * @return {@code true} if thorough size check enabled, {@code false} if not
* @since
* @since 8.13
*/ */
public boolean isUsingThoroughSizeCheck() { public boolean isUsingThoroughSizeCheck() {
return getState(false).thoroughSizeCheck; return getState(false).thoroughSizeCheck;
* @param thoroughSizeCheck * @param thoroughSizeCheck
* {@code true} if thorough size check enabled, {@code false} if * {@code true} if thorough size check enabled, {@code false} if
* not * not
* @since
* @since 8.13
*/ */
public void setUsingThoroughSizeCheck(boolean thoroughSizeCheck) { public void setUsingThoroughSizeCheck(boolean thoroughSizeCheck) {
getState().thoroughSizeCheck = thoroughSizeCheck; getState().thoroughSizeCheck = thoroughSizeCheck;

+ 1
- 1
shared/src/main/java/com/vaadin/shared/ui/ui/UIState.java View File

* transform animation is ongoing. This can happen e.g. when a PopupView is * transform animation is ongoing. This can happen e.g. when a PopupView is
* opened. * opened.
* *
* @since
* @since 8.13
*/ */
public boolean thoroughSizeCheck = true; public boolean thoroughSizeCheck = true;



+ 1
- 1
uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java View File

// Chrome version does not necessarily match the desired version // Chrome version does not necessarily match the desired version
// because of auto updates... // because of auto updates...
browserIdentifier = getExpectedUserAgentString( browserIdentifier = getExpectedUserAgentString(
getDesiredCapabilities()) + "88";
getDesiredCapabilities()) + "87";
} else if (BrowserUtil.isFirefox(getDesiredCapabilities())) { } else if (BrowserUtil.isFirefox(getDesiredCapabilities())) {
browserIdentifier = getExpectedUserAgentString( browserIdentifier = getExpectedUserAgentString(
getDesiredCapabilities()) + "81"; getDesiredCapabilities()) + "81";

Loading…
Cancel
Save