mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
hasCombinedに変更
This commit is contained in:
parent
b86843bd57
commit
435fe7b3ce
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user