mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
JavaDoc対応(WIP)
This commit is contained in:
parent
aeec6c60b2
commit
db2cac5c62
|
@ -6,14 +6,33 @@ import java.util.Date;
|
|||
import one.nem.lacerta.model.document.path.DocumentPath;
|
||||
import one.nem.lacerta.model.document.DocumentMeta;
|
||||
|
||||
/**
|
||||
* ドキュメントの詳細データ
|
||||
*/
|
||||
public class DocumentDetail {
|
||||
|
||||
/**
|
||||
* ドキュメントのメタデータ(DocumentMetaインスタンス)
|
||||
*/
|
||||
DocumentMeta meta;
|
||||
DocumentPath path;
|
||||
String author;
|
||||
String defaultBranch;
|
||||
// Getter
|
||||
|
||||
/**
|
||||
* ドキュメントのパス(DocumentPathインスタンス)
|
||||
*/
|
||||
DocumentPath path;
|
||||
|
||||
/**
|
||||
* ドキュメントの作者(String)
|
||||
*/
|
||||
String author;
|
||||
|
||||
/**
|
||||
* ドキュメントのデフォルトブランチ(String)
|
||||
*/
|
||||
String defaultBranch;
|
||||
|
||||
|
||||
// Getter
|
||||
public DocumentMeta getMeta() {
|
||||
return meta;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user