Example usage for javafx.fxml Initializable interface-usage

List of usage examples for javafx.fxml Initializable interface-usage

Introduction

In this page you can find the example usage for javafx.fxml Initializable interface-usage.

Usage

From source file pl.baczkowicz.mqttspy.ui.NewPublicationController.java

/**
 * Controller for creating new publications.
 */
@SuppressWarnings("deprecation")
public class NewPublicationController implements Initializable, ScriptListChangeObserver, TitledPaneController {
    /** Diagnostic logger. */

From source file frontend.GUIController.java

/**
 * This is the GUI Controller class.
 * @author ltao3, Shubhanshu
 */
public class GUIController implements Initializable {

From source file org.ado.biblio.desktop.AppPresenter.java

/**
 * Class description here.
 *
 * @author andoni
 * @since 25.10.2014
 */

From source file de.dkfz.roddy.client.fxuiclient.RoddyUIController.java

/**
 * Controller implementation for RoddyUI.fxml
 * This is the JavaFX replacement for the RoddyUI class.
 */
public class RoddyUIController extends BorderPane implements Initializable, ProjectTreeItemCellListener {

From source file pl.baczkowicz.mqttspy.ui.controllers.NewPublicationController.java

/**
 * Controller for creating new publications.
 */
public class NewPublicationController implements Initializable, TitledPaneController {
    /** Diagnostic logger. */
    private final static Logger logger = LoggerFactory.getLogger(NewPublicationController.class);

From source file com.esri.geoevent.test.performance.ui.FixtureController.java

public class FixtureController implements Initializable {

    //UI Elements

    @FXML
    public Label nameLabel;

From source file UI.MainStageController.java

/**
 * <h1>This is the main GUI class. It implements most methods for the main stage.</h1>
 * <p>
 * Most of the functionality is channeled in this class. This is the class where all of the functionality comes
 * together. It contains the method for initializing all required Services and it implements all buttons in the main
 * stage.

From source file com.neuronrobotics.bowlerstudio.MainController.java

/**
 * FXML Controller class
 *
 * @author Michael Hoffer &lt;info@michaelhoffer.de&gt;
 */
public class MainController implements Initializable {

From source file acmi.l2.clientmod.l2smr.Controller.java

@SuppressWarnings({ "ConstantConditions", "unused" })
public class Controller extends ControllerBase implements Initializable {
    private static final boolean SHOW_STACKTRACE = System.getProperty("L2smr.showStackTrace", "false")
            .equalsIgnoreCase("true");

    @FXML

From source file com.github.drbookings.ui.controller.MainController.java

public class MainController implements Initializable {

    public static final ExecutorService EXECUTOR = Executors.newSingleThreadExecutor();
    private static final short DEFAULT_THREAD_WAIT_SECONDS = 30;
    private static final DecimalFormat decimalFormat = new DecimalFormat("#,###,###,##0.00");
    private final static Logger logger = LoggerFactory.getLogger(MainController.class);