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

com.sshtools.jajafx.Tile Maven / Gradle / Ivy

The newest version!
package com.sshtools.jajafx;

import java.io.Closeable;

import javafx.scene.Scene;

public interface Tile extends Closeable {
	void configure(Scene scene, Tiles wizard, C context);

	void shown();
	
	void hidden();

	Scene getScene();
	
	void close();

	default boolean validate() {
		return true;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy