mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
コンストラクタ, Getter, Setter
This commit is contained in:
parent
bc06438811
commit
5ff6ac32ba
|
@ -8,8 +8,67 @@ public class XmlMetaModel {
|
||||||
String title;
|
String title;
|
||||||
String author;
|
String author;
|
||||||
String description;
|
String description;
|
||||||
Date created;
|
// Date created;
|
||||||
Date updated;
|
// Date updated;
|
||||||
String defaultBranch;
|
String defaultBranch;
|
||||||
ArrayList<XmlMetaPageModel> pages;
|
ArrayList<XmlMetaPageModel> pages;
|
||||||
|
|
||||||
|
// Constructor
|
||||||
|
|
||||||
|
public XmlMetaModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public XmlMetaModel(String title, String author, String description, String defaultBranch, ArrayList<XmlMetaPageModel> pages) {
|
||||||
|
this.title = title;
|
||||||
|
this.author = author;
|
||||||
|
this.description = description;
|
||||||
|
this.defaultBranch = defaultBranch;
|
||||||
|
this.pages = pages;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Getter
|
||||||
|
|
||||||
|
public String getTitle() {
|
||||||
|
return title;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAuthor() {
|
||||||
|
return author;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDescription() {
|
||||||
|
return description;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDefaultBranch() {
|
||||||
|
return defaultBranch;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ArrayList<XmlMetaPageModel> getPages() {
|
||||||
|
return pages;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setter
|
||||||
|
|
||||||
|
public void setTitle(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAuthor(String author) {
|
||||||
|
this.author = author;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDescription(String description) {
|
||||||
|
this.description = description;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDefaultBranch(String defaultBranch) {
|
||||||
|
this.defaultBranch = defaultBranch;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPages(ArrayList<XmlMetaPageModel> pages) {
|
||||||
|
this.pages = pages;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user