From 1cf28d599759e81f229b4a1298515227c9bcde8f Mon Sep 17 00:00:00 2001 From: r-ca Date: Sun, 17 Dec 2023 13:55:56 +0900 Subject: [PATCH] =?UTF-8?q?Getter/Setter=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../debug/common/model/DebugMenuListItem.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuListItem.java b/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuListItem.java index 406a5a1f..0c5eb5f6 100644 --- a/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuListItem.java +++ b/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuListItem.java @@ -7,4 +7,32 @@ public class DebugMenuListItem { private String destinationId; // Navigation destination ID private boolean enabled; + public DebugMenuListItem(String title, String description, String destinationId, boolean enabled) { + this.title = title; + this.description = description; + this.destinationId = destinationId; + this.enabled = enabled; + } + + public String getTitle() { + return title; + } + + public String getDescription() { + return description; + } + + public String getDestinationId() { + return destinationId; + } + + public boolean isEnabled() { + return enabled; + } + + public void setEnabled(boolean enabled) { + this.enabled = enabled; + } + + }