Getter/Setter追加

This commit is contained in:
r-ca 2023-12-17 13:21:18 +09:00
parent 17c7b5b675
commit b7e29233cd
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -8,4 +8,35 @@ public class SettingMenuItem {
private String title;
private String description;
private String destinationId;
public SettingMenuItem(String title, String description, String destinationId) {
this.title = title;
this.description = description;
this.destinationId = destinationId;
}
public String getTitle() {
return title;
}
public String getDescription() {
return description;
}
public String getDestinationId() {
return destinationId;
}
public void setTitle(String title) {
this.title = title;
}
public void setDescription(String description) {
this.description = description;
}
public void setDestinationId(String destinationId) {
this.destinationId = destinationId;
}
}