Browse Source

Update @since tags for 7.6.

Change-Id: I69df09f371aae61f9e1ef741814f6e3016510fe2
tags/7.6.0.alpha5
Mika Murtojarvi 8 years ago
parent
commit
82a0322347

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

@@ -1511,7 +1511,7 @@ public class ApplicationConnection implements HasHandlers {
* Checks if the application is in the {@link ApplicationState#RUNNING}
* state.
*
* @since
* @since 7.6
* @return true if the application is in the running state, false otherwise
*/
public boolean isApplicationRunning() {

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

@@ -68,7 +68,7 @@ public class WidgetUtil {
* Redirects the browser to the given url or refreshes the page if url is
* null
*
* @since
* @since 7.6
* @param url
* The url to redirect to or null to refresh
*/

+ 0
- 3
client/src/com/vaadin/client/communication/DefaultConnectionStateHandler.java View File

@@ -467,9 +467,6 @@ public class DefaultConnectionStateHandler implements ConnectionStateHandler {
}
}

/**
* @since
*/
private void endRequest() {
getConnection().getMessageSender().endRequest();
}

+ 1
- 1
client/src/com/vaadin/client/connectors/AbstractSelectionModelConnector.java View File

@@ -28,7 +28,7 @@ import elemental.json.JsonObject;
/**
* Base class for all selection model connectors.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public abstract class AbstractSelectionModelConnector<T extends SelectionModel<JsonObject>>

+ 1
- 1
client/src/com/vaadin/client/connectors/GridConnector.java View File

@@ -1183,7 +1183,7 @@ public class GridConnector extends AbstractHasComponentsConnector implements
/**
* Creates a concatenation of all columns errors for Editor.
*
* @since
* @since 7.6
* @return displayed error string
*/
private String getColumnErrors() {

+ 1
- 1
client/src/com/vaadin/client/connectors/MultiSelectionModelConnector.java View File

@@ -53,7 +53,7 @@ import elemental.json.JsonObject;
/**
* Connector for server-side {@link MultiSelectionModel}.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
@Connect(MultiSelectionModel.class)

+ 1
- 1
client/src/com/vaadin/client/connectors/SingleSelectionModelConnector.java View File

@@ -34,7 +34,7 @@ import elemental.json.JsonObject;
/**
* Connector for server-side {@link SingleSelectionModel}.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
@Connect(SingleSelectionModel.class)

+ 1
- 1
client/src/com/vaadin/client/widget/grid/DefaultEditorEventHandler.java View File

@@ -30,7 +30,7 @@ import com.vaadin.client.widgets.Grid.EditorDomEvent;
* The default handler for Grid editor events. Offers several overridable
* protected methods for easier customization.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public class DefaultEditorEventHandler<T> implements Editor.EventHandler<T> {

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

@@ -1125,7 +1125,7 @@ public class Grid<T> extends ResizeComposite implements
* native event, contains a {@link CellReference} instance specifying which
* cell the event originated from.
*
* @since
* @since 7.6
* @param <T>
* The row type of the grid
*/
@@ -1170,7 +1170,7 @@ public class Grid<T> extends ResizeComposite implements
* A wrapper for native DOM events related to the {@link Editor Grid editor}
* .
*
* @since
* @since 7.6
* @param <T>
* the row type of the grid
*/
@@ -1227,7 +1227,7 @@ public class Grid<T> extends ResizeComposite implements
* An editor UI for Grid rows. A single Grid row at a time can be opened for
* editing.
*
* @since
* @since 7.6
* @param <T>
* the row type of the grid
*/
@@ -1243,7 +1243,7 @@ public class Grid<T> extends ResizeComposite implements
* A handler for events related to the Grid editor. Responsible for
* opening, moving or closing the editor based on the received event.
*
* @since
* @since 7.6
* @author Vaadin Ltd
* @param <T>
* the row type of the grid
@@ -2137,7 +2137,7 @@ public class Grid<T> extends ResizeComposite implements
/**
* Sets the event handler for this Editor.
*
* @since
* @since 7.6
* @param handler
* the new event handler
*/
@@ -2148,7 +2148,7 @@ public class Grid<T> extends ResizeComposite implements
/**
* Returns the event handler of this Editor.
*
* @since
* @since 7.6
* @return the current event handler
*/
public EventHandler<T> getEventHandler() {
@@ -4594,7 +4594,7 @@ public class Grid<T> extends ResizeComposite implements
/**
* Returns the current header caption for this column
*
* @since
* @since 7.6
* @return the header caption string
*/
public String getHeaderCaption() {

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

@@ -178,7 +178,7 @@ public class PushHandler {
/**
* Suspends the given resource
*
* @since
* @since 7.6
* @param resource
* the resource to suspend
*/

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

@@ -125,7 +125,7 @@ public class PushRequestHandler implements RequestHandler,
* customize the {@link PushHandler}, e.g. to dynamically decide the suspend
* timeout.
*
* @since
* @since 7.6
* @param service
* the vaadin service
* @return the push handler to use for this service

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

@@ -3898,7 +3898,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
/**
* Resends the row data for given item id to the client.
*
* @since
* @since 7.6
* @param itemId
* row to refresh
*/

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

@@ -131,7 +131,7 @@ public class GridState extends TabIndexState {
/**
* The key that tells whether row is selected.
*
* @since
* @since 7.6
*/
public static final String JSONKEY_SELECTED = "s";


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

@@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ServerRpc;
/**
* ServerRpc for MultiSelectionModel.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public interface MultiSelectionModelServerRpc extends ServerRpc {

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

@@ -20,7 +20,7 @@ import com.vaadin.shared.communication.SharedState;
/**
* SharedState object for MultiSelectionModel.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public class MultiSelectionModelState extends SharedState {

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

@@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ServerRpc;
/**
* ServerRpc for SingleSelectionModel.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public interface SingleSelectionModelServerRpc extends ServerRpc {

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

@@ -20,7 +20,7 @@ import com.vaadin.shared.communication.SharedState;
/**
* SharedState object for SingleSelectionModel.
*
* @since
* @since 7.6
* @author Vaadin Ltd
*/
public class SingleSelectionModelState extends SharedState {

+ 1
- 1
shared/src/com/vaadin/shared/ui/upload/UploadServerRpc.java View File

@@ -31,7 +31,7 @@ public interface UploadServerRpc extends ServerRpc {
* Called to poll the server to see if any changes have been made e.g. when
* starting upload
*
* @since
* @since 7.6
*/
void poll();


Loading…
Cancel
Save