mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +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.path.DocumentPath;
|
||||||
import one.nem.lacerta.model.document.DocumentMeta;
|
import one.nem.lacerta.model.document.DocumentMeta;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントの詳細データ
|
||||||
|
*/
|
||||||
public class DocumentDetail {
|
public class DocumentDetail {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのメタデータ(DocumentMetaインスタンス)
|
||||||
|
*/
|
||||||
DocumentMeta meta;
|
DocumentMeta meta;
|
||||||
DocumentPath path;
|
|
||||||
String author;
|
|
||||||
String defaultBranch;
|
|
||||||
// Getter
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのパス(DocumentPathインスタンス)
|
||||||
|
*/
|
||||||
|
DocumentPath path;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントの作者(String)
|
||||||
|
*/
|
||||||
|
String author;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのデフォルトブランチ(String)
|
||||||
|
*/
|
||||||
|
String defaultBranch;
|
||||||
|
|
||||||
|
|
||||||
|
// Getter
|
||||||
public DocumentMeta getMeta() {
|
public DocumentMeta getMeta() {
|
||||||
return meta;
|
return meta;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user