Browse Source

Fix empty @since for 7.6.alpha7

Change-Id: I97e36b388ce0002363a8022eed41d425f12b822d
tags/7.6.0.alpha7
Markus Koivisto 8 years ago
parent
commit
e5634deaa7

+ 1
- 1
client/src/com/vaadin/client/ui/dd/DragHandle.java View File

* general, event-providing interface that this component is based on, see * general, event-providing interface that this component is based on, see
* {@link DragAndDropHandler}. * {@link DragAndDropHandler}.
* *
* @since
* @since 7.6
*/ */
public class DragHandle { public class DragHandle {



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

/** /**
* Sets whether this column can be resized by the user. * Sets whether this column can be resized by the user.
* *
* @since
* @since 7.6
* *
* @param resizable * @param resizable
* {@code true} if this column should be resizable, * {@code true} if this column should be resizable,
* {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless * {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless
* of the returned value. * of the returned value.
* *
* @since
* @since 7.6
* *
* @return {@code true} if this column is resizable, {@code false} * @return {@code true} if this column is resizable, {@code false}
* otherwise * otherwise

+ 8
- 8
server/src/com/vaadin/server/VaadinService.java View File

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

+ 1
- 1
server/src/com/vaadin/server/VaadinSession.java View File

* <p> * <p>
* Called internally by the framework. * Called internally by the framework.
* *
* @since
* @since 7.6
* @param wrappedSession * @param wrappedSession
* the session this VaadinSession is stored in * the session this VaadinSession is stored in
* @param vaadinService * @param vaadinService

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

/** /**
* Sets whether this column can be resized by the user. * Sets whether this column can be resized by the user.
* *
* @since
* @since 7.6
* @param resizable * @param resizable
* {@code true} if this column should be resizable, * {@code true} if this column should be resizable,
* {@code false} otherwise * {@code false} otherwise
* {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless * {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless
* of the returned value. * of the returned value.
* *
* @since
* @since 7.6
* @return {@code true} if this column is resizable, {@code false} * @return {@code true} if this column is resizable, {@code false}
* otherwise * otherwise
*/ */

+ 1
- 1
shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java View File

/** /**
* Informs the server that a column has been resized by the user. * Informs the server that a column has been resized by the user.
* *
* @since
* @since 7.6
* @param id * @param id
* the id of the column * the id of the column
* @param pixels * @param pixels

+ 1
- 1
shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java View File

/** /**
* Client-to-server RPC interface for the Tree component * Client-to-server RPC interface for the Tree component
* *
* @since
* @since 7.6
* @author Vaadin Ltd * @author Vaadin Ltd
*/ */
public interface TreeServerRpc extends ServerRpc { public interface TreeServerRpc extends ServerRpc {

Loading…
Cancel
Save