* Connector for Grid Editor.
*
* @author Vaadin Ltd
- * @since
+ * @since 8.0
*/
@Connect(EditorImpl.class)
public class EditorConnector extends AbstractExtensionConnector {
List<String> errorColumnsIds) {
Collection<Column<?, JsonObject>> errorColumns;
if (errorColumnsIds != null) {
- errorColumns = new ArrayList<Grid.Column<?, JsonObject>>();
+ errorColumns = new ArrayList<>();
for (String colId : errorColumnsIds) {
errorColumns.add(getParent().getColumn(colId));
}
* changed.
*
* @author Vaadin Ltd.
- * @since
+ * @since 5.3
* @deprecated use com.vaadin.ui.HorizontalLayout (with different defaults)
*/
@Deprecated
* have changed.
*
* @author Vaadin Ltd.
- * @since
+ * @since 5.3
* @deprecated use com.vaadin.ui.VerticalLayout (with different defaults)
*/
@Deprecated
* Provider interface for generating localizable error messages using
* {@link ValueContext}.
*
- * @since
+ * @since 8.0
* @author Vaadin Ltd.
*/
@FunctionalInterface
* converting values.
*
* @author Vaadin Ltd.
- * @since
+ * @since 8.0
*/
public class ValueContext implements Serializable {
* Interface for DataProviders that support chaining filters.
*
* @author Vaadin Ltd
- * @since
+ * @since 8.0
*
* @param <T>
* the data provider data type
* provider with correct filters and sorting.
*
* @author Vaadin Ltd.
- * @since
+ * @since 8.0
*
* @param <T>
* data provider data type
* This event can also be used to add {@link RequestHandler}s that will be used
* by the {@code VaadinService} for handling all requests.
*
- * @since
+ * @since 8.0
* @author Vaadin Ltd
*/
public class ServiceInitEvent extends EventObject {
* {@link ServiceLoader}. This could for example be used to allow defining
* an init listener as an OSGi service or as a Spring bean.
*
- * @since
+ * @since 8.0
*
* @return an iterator of available service init listeners
*/
* Integrations for specific runtime environments, such as OSGi or Spring, might
* also provide other ways of discovering listeners.
*
- * @since
+ * @since 8.0
* @author Vaadin Ltd
*/
@FunctionalInterface
/**
* Default shared state implementation for AbstractColorPicker.
*
- * @since
+ * @since 8.0
*/
public class AbstractColorPickerState extends AbstractFieldState {
{
*
* @author Vaadin Ltd.
*
- * @since
+ * @since 8.0
*/
public class ColorPickerState extends AbstractColorPickerState {
/**
* An RPC interface for the grid editor server-to-client communications.
*
- * @since
+ * @since 8.0
* @author Vaadin Ltd
*/
public interface EditorClientRpc extends ClientRpc {
/**
* An RPC interface for the grid editor client-to-server communications.
*
- * @since
+ * @since 8.0
* @author Vaadin Ltd
*/
public interface EditorServerRpc extends ServerRpc {
* State object for Editor in Grid.
*
* @author Vaadin Ltd
- * @since
+ * @since 8.0
*/
public class EditorState extends AbstractGridExtensionState {