From 435fe7b3ceceab9d082955f2d2425a659b8d547f Mon Sep 17 00:00:00 2001 From: r-ca Date: Sun, 28 Jan 2024 13:47:08 +0900 Subject: [PATCH] =?UTF-8?q?hasCombined=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/one/nem/lacerta/model/ListItem.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/model/src/main/java/one/nem/lacerta/model/ListItem.java b/model/src/main/java/one/nem/lacerta/model/ListItem.java index d1d67afa..b987b616 100644 --- a/model/src/main/java/one/nem/lacerta/model/ListItem.java +++ b/model/src/main/java/one/nem/lacerta/model/ListItem.java @@ -10,7 +10,7 @@ public class ListItem { String description; ListItemType itemType; String itemId; - boolean isCombined; + boolean hasCombined; // Constructor @@ -21,12 +21,12 @@ public class ListItem { this.itemId = itemId; } - public ListItem(String title, String description, ListItemType itemType, String itemId, boolean isCombined) { + public ListItem(String title, String description, ListItemType itemType, String itemId, boolean hasCombined) { this.title = title; this.description = description; this.itemType = itemType; this.itemId = itemId; - this.isCombined = isCombined; + this.hasCombined = hasCombined; } public ListItem() { @@ -51,8 +51,8 @@ public class ListItem { return itemId; } - public boolean getIsCombined() { - return isCombined; + public boolean getHasCombined() { + return hasCombined; } // Setter @@ -73,8 +73,8 @@ public class ListItem { this.itemId = itemId; } - public void setIsCombined(boolean isCombined) { - this.isCombined = isCombined; + public void setHasCombined(boolean hasCombined) { + this.hasCombined = hasCombined; } }