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

fi.evolver.ai.vaadin.component.ComponentSource Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
package fi.evolver.ai.vaadin.component;

import com.vaadin.flow.component.Component;

public interface ComponentSource extends Comparable> {

	public Component getComponent();

	public default int getOrder() {
		return 1;
	}

	@Override
	public default int compareTo(ComponentSource other) {
		return getOrder() - other.getOrder();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy