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

org.controlsfx.control.action.AnnotatedCheckAction Maven / Gradle / Ivy

Go to download

High quality UI controls and other tools to complement the core JavaFX distribution

There is a newer version: 11.2.1
Show newest version
package org.controlsfx.control.action;

import java.lang.reflect.Method;

@ActionCheck
public class AnnotatedCheckAction extends AnnotatedAction {

    /**
     * Instantiates an action that will call the specified method on the specified target.
     * This action is marked  with @ActionCheck
     *
     * @param text
     * @param method
     * @param target
     */
    public AnnotatedCheckAction(String text, Method method, Object target) {
        super(text, method, target);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy