From c62861dfee8e7aa2411e91b0f8a257297f08316f Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Mon, 30 Dec 2019 17:27:23 +0100 Subject: [PATCH] TButton: allow to get/set the action --- src/jexer/TButton.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/jexer/TButton.java b/src/jexer/TButton.java index d86fa44..d1d7b39 100644 --- a/src/jexer/TButton.java +++ b/src/jexer/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 --------------------------------------------------------- -- 2.27.0