Browse Source

Add since tags for 8.1 (#9343)

* Add since tags for 8.1

Note that ConnectorTracker changes will probably be backported to 7.7
in #9331.
tags/8.1.0.beta1
Henri Sara 7 years ago
parent
commit
6297a81c52

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

@@ -280,7 +280,7 @@ public class ConnectorTracker implements Serializable {
* <p>
* This should only be called by the framework.
*
* @since
* @since 8.1
*/
public void ensureCleanedAndConsistent() {
// Do this expensive check only with assertions enabled
@@ -449,7 +449,7 @@ public class ConnectorTracker implements Serializable {
*
* @return <code>true</code> if the hierarchy is consistent,
* <code>false</code> otherwise
* @since
* @since 8.1
*/
private boolean isHierarchyComplete() {
boolean noErrors = true;

+ 2
- 0
shared/src/main/java/com/vaadin/shared/ui/ui/PageClientRpc.java View File

@@ -33,6 +33,8 @@ public interface PageClientRpc extends ClientRpc {

/**
* Initialize Mobile HTML5 Drag and Drop Polyfill.
*
* @since 8.1
*/
public void initializeMobileHtml5DndPolyfill();
}

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

@@ -88,6 +88,8 @@ public class UIState extends AbstractSingleComponentContainerState {

/**
* Enable Mobile HTML5 DnD support.
*
* @since 8.1
*/
public boolean enableMobileHTML5DnD = false;


Loading…
Cancel
Save