From: Niki Roo Date: Mon, 30 Dec 2019 16:27:23 +0000 (+0100) Subject: TButton: allow to get/set the action X-Git-Tag: fanfix-swing-0.0.1~12^2~15^2~2 X-Git-Url: http://git.nikiroo.be/?a=commitdiff_plain;h=0c53bc26dbbdaf520883eea53d2dfa1f1729eaa2;p=fanfix-swing.git TButton: allow to get/set the action --- diff --git a/TButton.java b/TButton.java index d86fa440..d1d7b390 100644 --- a/TButton.java +++ b/TButton.java @@ -129,6 +129,20 @@ public class TButton extends TWidget { this(parent, text, x, y); this.action = action; } + + /** + * The action to call when the button is pressed. + **/ + public TAction getAction() { + return action; + } + + /** + * The action to call when the button is pressed. + **/ + public void setAction(TAction action) { + this.action = action; + } // ------------------------------------------------------------------------ // Event handlers ---------------------------------------------------------