mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 08:23:15 +00:00
すべてのコンストラクタで既定値(false)を入れるように
This commit is contained in:
parent
45e6b9ab05
commit
4bdb1a489c
|
@ -60,6 +60,8 @@ public class DocumentMeta { // TODO-rca: JavaDoc対応
|
||||||
this.id = UUID.randomUUID().toString();
|
this.id = UUID.randomUUID().toString();
|
||||||
this.title = title;
|
this.title = title;
|
||||||
this.author = author;
|
this.author = author;
|
||||||
|
this.isCombineChild = false;
|
||||||
|
this.isCombineParent = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String author) {
|
public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String author) {
|
||||||
|
@ -68,6 +70,8 @@ public class DocumentMeta { // TODO-rca: JavaDoc対応
|
||||||
this.updatedAt = updatedAt;
|
this.updatedAt = updatedAt;
|
||||||
this.createdAt = createdAt;
|
this.createdAt = createdAt;
|
||||||
this.author = author;
|
this.author = author;
|
||||||
|
this.isCombineChild = false;
|
||||||
|
this.isCombineParent = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String parentId, String author) {
|
public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String parentId, String author) {
|
||||||
|
@ -77,6 +81,8 @@ public class DocumentMeta { // TODO-rca: JavaDoc対応
|
||||||
this.createdAt = createdAt;
|
this.createdAt = createdAt;
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.author = author;
|
this.author = author;
|
||||||
|
this.isCombineChild = false;
|
||||||
|
this.isCombineParent = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String parentId, String author, boolean isCombineChild, boolean isCombineParent) {
|
public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String parentId, String author, boolean isCombineChild, boolean isCombineParent) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user