瀏覽代碼

Fix empty @since for 7.6.alpha7

Change-Id: I97e36b388ce0002363a8022eed41d425f12b822d
tags/7.6.0.alpha7
Markus Koivisto 8 年之前
父節點
當前提交
e5634deaa7

+ 1
- 1
client/src/com/vaadin/client/ui/dd/DragHandle.java 查看文件

@@ -32,7 +32,7 @@ import com.vaadin.client.ui.dd.DragAndDropHandler.DragAndDropCallback;
* general, event-providing interface that this component is based on, see
* {@link DragAndDropHandler}.
*
* @since
* @since 7.6
*/
public class DragHandle {


+ 2
- 2
client/src/com/vaadin/client/widgets/Grid.java 查看文件

@@ -4859,7 +4859,7 @@ public class Grid<T> extends ResizeComposite implements
/**
* Sets whether this column can be resized by the user.
*
* @since
* @since 7.6
*
* @param resizable
* {@code true} if this column should be resizable,
@@ -4883,7 +4883,7 @@ public class Grid<T> extends ResizeComposite implements
* {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless
* of the returned value.
*
* @since
* @since 7.6
*
* @return {@code true} if this column is resizable, {@code false}
* otherwise

+ 8
- 8
server/src/com/vaadin/server/VaadinService.java 查看文件

@@ -1660,7 +1660,7 @@ public abstract class VaadinService implements Serializable {
/**
* Checks whether Atmosphere is avilable for use
*
* @since
* @since 7.6
* @return true if Atmosphere is available, false otherwise
*/
protected boolean isAtmosphereAvailable() {
@@ -1920,7 +1920,7 @@ public abstract class VaadinService implements Serializable {
* <p>
* By default stores the VaadinSession in the underlying HTTP session.
*
* @since
* @since 7.6
* @param session
* the VaadinSession to store
* @param wrappedSession
@@ -1939,7 +1939,7 @@ public abstract class VaadinService implements Serializable {
* <p>
* Called by {@link #storeSession(VaadinSession, WrappedSession)}
*
* @since
* @since 7.6
* @param wrappedSession
* the underlying HTTP session
* @param session
@@ -1954,7 +1954,7 @@ public abstract class VaadinService implements Serializable {
* Called when the VaadinSession should be loaded from the underlying HTTP
* session
*
* @since
* @since 7.6
* @param wrappedSession
* the underlying HTTP session
* @return the VaadinSession in the HTTP session or null if not found
@@ -1978,7 +1978,7 @@ public abstract class VaadinService implements Serializable {
*
* @param wrappedSession
* the underlying HTTP session
* @since
* @since 7.6
* @return the VaadinSession or null if no session was found
*/
protected VaadinSession readFromHttpSession(WrappedSession wrappedSession) {
@@ -1990,7 +1990,7 @@ public abstract class VaadinService implements Serializable {
* Called when the VaadinSession should be removed from the underlying HTTP
* session
*
* @since
* @since 7.6
* @param wrappedSession
* the underlying HTTP session
*/
@@ -2003,7 +2003,7 @@ public abstract class VaadinService implements Serializable {
* Performs the actual removal of the VaadinSession from the underlying HTTP
* session after sanity checks have been performed
*
* @since
* @since 7.6
* @param wrappedSession
* the underlying HTTP session
*/
@@ -2016,7 +2016,7 @@ public abstract class VaadinService implements Serializable {
* Returns the name used for storing the VaadinSession in the underlying
* HTTP session
*
* @since
* @since 7.6
* @return the attribute name used for storing the VaadinSession
*/
protected String getSessionAttributeName() {

+ 1
- 1
server/src/com/vaadin/server/VaadinSession.java 查看文件

@@ -1440,7 +1440,7 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable {
* <p>
* Called internally by the framework.
*
* @since
* @since 7.6
* @param wrappedSession
* the session this VaadinSession is stored in
* @param vaadinService

+ 2
- 2
server/src/com/vaadin/ui/Grid.java 查看文件

@@ -3716,7 +3716,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
/**
* Sets whether this column can be resized by the user.
*
* @since
* @since 7.6
* @param resizable
* {@code true} if this column should be resizable,
* {@code false} otherwise
@@ -3737,7 +3737,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
* {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless
* of the returned value.
*
* @since
* @since 7.6
* @return {@code true} if this column is resizable, {@code false}
* otherwise
*/

+ 1
- 1
shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java 查看文件

@@ -93,7 +93,7 @@ public interface GridServerRpc extends ServerRpc {
/**
* Informs the server that a column has been resized by the user.
*
* @since
* @since 7.6
* @param id
* the id of the column
* @param pixels

+ 1
- 1
shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java 查看文件

@@ -21,7 +21,7 @@ import com.vaadin.shared.communication.ServerRpc;
/**
* Client-to-server RPC interface for the Tree component
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public interface TreeServerRpc extends ServerRpc {

Loading…
取消
儲存