コンストラクタ追加

This commit is contained in:
r-ca 2023-12-16 13:35:51 +09:00
parent c59871300a
commit 07a489b151
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -10,7 +10,6 @@ import one.nem.lacerta.model.document.DocumentMeta;
* ドキュメントの詳細データ * ドキュメントの詳細データ
*/ */
public class DocumentDetail { public class DocumentDetail {
// TODO-rca: コンストラクタを追加する
/** /**
* ドキュメントのメタデータ(DocumentMetaインスタンス) * ドキュメントのメタデータ(DocumentMetaインスタンス)
@ -32,6 +31,16 @@ public class DocumentDetail {
*/ */
String defaultBranch; String defaultBranch;
// Constructor
public DocumentDetail() {
}
public DocumentDetail(DocumentMeta meta, DocumentPath path, String author, String defaultBranch) {
this.meta = meta;
this.path = path;
this.author = author;
this.defaultBranch = defaultBranch;
}
// Getter // Getter