mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
Getter/Setter追加
This commit is contained in:
parent
17c7b5b675
commit
b7e29233cd
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user