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

com.github.fluorumlabs.disconnect.vaadin.dataproviders.ComboBoxDataProvider Maven / Gradle / Ivy

The newest version!
package com.github.fluorumlabs.disconnect.vaadin.dataproviders;

import js.lang.Any;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSProperty;

/**
 * Created by Artem Godin on 2/4/2020.
 */
@JSFunctor
@FunctionalInterface
public interface ComboBoxDataProvider extends Any {
	void provide(Params params, DataProviderCallback callback);

	interface Params extends Any {
		@JSProperty
		int getPage();

		@JSProperty
		int getPageSize();

		@JSProperty
		String getFilter();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy