All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.v7.data.BufferedValidatable Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */

package com.vaadin.v7.data;

import com.vaadin.data.Binder;

/**
 * 

* This interface defines the combination of Validatable and * Buffered interfaces. The combination of the interfaces defines * if the invalid data is committed to datasource. *

* * @author Vaadin Ltd. * @since 3.0 * @deprecated As of 8.0, no direct replacement available. See {@link Binder}, {@link com.vaadin.data.Validator}. */ @Deprecated public interface BufferedValidatable extends Buffered, Validatable { /** * Tests if the invalid data is committed to datasource. The default is * false. */ public boolean isInvalidCommitted(); /** * Sets if the invalid data should be committed to datasource. The default * is false. */ public void setInvalidCommitted(boolean isCommitted); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy