mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
コンストラクタ追加
This commit is contained in:
parent
c59871300a
commit
07a489b151
|
@ -10,7 +10,6 @@ import one.nem.lacerta.model.document.DocumentMeta;
|
|||
* ドキュメントの詳細データ
|
||||
*/
|
||||
public class DocumentDetail {
|
||||
// TODO-rca: コンストラクタを追加する
|
||||
|
||||
/**
|
||||
* ドキュメントのメタデータ(DocumentMetaインスタンス)
|
||||
|
@ -32,6 +31,16 @@ public class DocumentDetail {
|
|||
*/
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user