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

org.datafx.samples.featuretoggle.FeatureController Maven / Gradle / Ivy

The newest version!
package org.datafx.samples.featuretoggle;

import javafx.fxml.FXML;
import javafx.scene.control.Button;
import org.datafx.controller.FXMLController;
import org.datafx.featuretoggle.DisabledByFeature;

@FXMLController("featureView.fxml")
public class FeatureController {

    @FXML
    @DisabledByFeature("FEATURE1")
    private Button button1;

    @FXML
    @DisabledByFeature("FEATURE2")
    private Button button2;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy