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

com.mantledillusion.vaadin.cotton.component.Configurer Maven / Gradle / Ivy

package com.mantledillusion.vaadin.cotton.component;

import com.vaadin.flow.component.Component;

/**
 * {@link Configurer} for components.
 *
 * @param 
 *            The {@link Component} type to configure.
 */
@FunctionalInterface
public interface Configurer {

	/**
	 * Configures the given {@link Component}.
	 * 
	 * @param component
	 *            The {@link Component} to configure; might not be null.
	 */
	void configure(C component);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy