mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
JavaDoc対応
This commit is contained in:
parent
db2cac5c62
commit
fe17397b38
|
@ -33,18 +33,31 @@ public class DocumentDetail {
|
||||||
|
|
||||||
|
|
||||||
// Getter
|
// Getter
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのメタデータ(DocumentMetaインスタンス)を取得する
|
||||||
|
*/
|
||||||
public DocumentMeta getMeta() {
|
public DocumentMeta getMeta() {
|
||||||
return meta;
|
return meta;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのパス(DocumentPathインスタンス)を取得する
|
||||||
|
*/
|
||||||
public DocumentPath getPath() {
|
public DocumentPath getPath() {
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントの作者(String)を取得する
|
||||||
|
*/
|
||||||
public String getAuthor() {
|
public String getAuthor() {
|
||||||
return author;
|
return author;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのデフォルトブランチ(String)を取得する
|
||||||
|
*/
|
||||||
public String getDefaultBranch() {
|
public String getDefaultBranch() {
|
||||||
return defaultBranch;
|
return defaultBranch;
|
||||||
}
|
}
|
||||||
|
@ -52,18 +65,30 @@ public class DocumentDetail {
|
||||||
|
|
||||||
// Setter
|
// Setter
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのメタデータ(DocumentMetaインスタンス)を設定する
|
||||||
|
*/
|
||||||
public void setMeta(DocumentMeta meta) {
|
public void setMeta(DocumentMeta meta) {
|
||||||
this.meta = meta;
|
this.meta = meta;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのパス(DocumentPathインスタンス)を設定する
|
||||||
|
*/
|
||||||
public void setPath(DocumentPath path) {
|
public void setPath(DocumentPath path) {
|
||||||
this.path = path;
|
this.path = path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントの作者(String)を設定する
|
||||||
|
*/
|
||||||
public void setAuthor(String author) {
|
public void setAuthor(String author) {
|
||||||
this.author = author;
|
this.author = author;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ドキュメントのデフォルトブランチ(String)を設定する
|
||||||
|
*/
|
||||||
public void setDefaultBranch(String defaultBranch) {
|
public void setDefaultBranch(String defaultBranch) {
|
||||||
this.defaultBranch = defaultBranch;
|
this.defaultBranch = defaultBranch;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user