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

org.datafx.samples.inheritance.ControllerImpl Maven / Gradle / Ivy

There is a newer version: 8.0b5
Show newest version
package org.datafx.samples.inheritance;

import org.datafx.controller.FXMLController;

import javax.annotation.PostConstruct;


@FXMLController("inheritance.fxml")
public class ControllerImpl extends AbstractController {

    @PostConstruct
    public void init() {
        System.out.println("Check 1: " + getActionHandler().toString());
        System.out.println("Check 2: " + getContext().toString());
        System.out.println("Check 3: " + getDate().toString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy