org.fxmisc.wellbehaved.skin.SimpleVisualBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WellBehavedFX Show documentation
Show all versions of WellBehavedFX Show documentation
Composable event handlers and skin skeletons for JavaFX controls.
The newest version!
package org.fxmisc.wellbehaved.skin;
import javafx.scene.Node;
import javafx.scene.control.Control;
/**
* A Visual that is represented by a single node.
*/
public abstract class SimpleVisualBase extends VisualBase {
public SimpleVisualBase(C control) {
super(control);
}
/**
* Returns the node representing the visual rendering of the control. This
* node will be attached to the control as its child on skin creation and
* removed from the control on skin disposal.
*/
public abstract Node getNode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy