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

xworker.javafx.control.ButtonBaseActions Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package xworker.javafx.control;

import javafx.scene.control.ButtonBase;
import org.xmeta.ActionContext;
import org.xmeta.Thing;
import xworker.javafx.beans.property.PropertyFactory;

public class ButtonBaseActions {
	static{
		PropertyFactory.regist(ButtonBase.class, "onActionProperty", o -> {
			ButtonBase obj = (ButtonBase) o;
			return obj.onActionProperty();
		});
	}

	public static void init(ButtonBase button, Thing thing, ActionContext actionContext) {
		 LabeledActions.init(button, thing, actionContext);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy