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
dbb338ce63
commit
5b5f4b16ad
|
@ -67,6 +67,7 @@ public class DocumentDetail {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ドキュメントのメタデータ(DocumentMetaインスタンス)を設定する
|
* ドキュメントのメタデータ(DocumentMetaインスタンス)を設定する
|
||||||
|
* @param meta DocumentMetaインスタンス
|
||||||
*/
|
*/
|
||||||
public void setMeta(DocumentMeta meta) {
|
public void setMeta(DocumentMeta meta) {
|
||||||
this.meta = meta;
|
this.meta = meta;
|
||||||
|
@ -74,6 +75,7 @@ public class DocumentDetail {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ドキュメントのパス(DocumentPathインスタンス)を設定する
|
* ドキュメントのパス(DocumentPathインスタンス)を設定する
|
||||||
|
* @param path DocumentPathインスタンス
|
||||||
*/
|
*/
|
||||||
public void setPath(DocumentPath path) {
|
public void setPath(DocumentPath path) {
|
||||||
this.path = path;
|
this.path = path;
|
||||||
|
@ -81,6 +83,7 @@ public class DocumentDetail {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ドキュメントの作者(String)を設定する
|
* ドキュメントの作者(String)を設定する
|
||||||
|
* @param author ドキュメントの作者
|
||||||
*/
|
*/
|
||||||
public void setAuthor(String author) {
|
public void setAuthor(String author) {
|
||||||
this.author = author;
|
this.author = author;
|
||||||
|
@ -88,6 +91,7 @@ public class DocumentDetail {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ドキュメントのデフォルトブランチ(String)を設定する
|
* ドキュメントのデフォルトブランチ(String)を設定する
|
||||||
|
* @param defaultBranch ドキュメントのデフォルトブランチ
|
||||||
*/
|
*/
|
||||||
public void setDefaultBranch(String defaultBranch) {
|
public void setDefaultBranch(String defaultBranch) {
|
||||||
this.defaultBranch = defaultBranch;
|
this.defaultBranch = defaultBranch;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user