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

net.rgielen.fxweaver.samples.springboot.controller.tiles.SimpleTileController Maven / Gradle / Ivy

The newest version!
package net.rgielen.fxweaver.samples.springboot.controller.tiles;

import javafx.fxml.FXML;
import javafx.scene.control.Label;
import net.rgielen.fxweaver.core.FxmlView;
import org.springframework.stereotype.Component;

/**
 * SimpleTileController.
 *
 * @author Rene Gielen
 */
@FxmlView
@Component
public class SimpleTileController {

    @FXML
    public Label label;

    @FXML
    public void initialize() {
        label.setText(label.getText() + " initialized");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy