JavaDoc対応(パラメータ)

This commit is contained in:
ろむねこ 2023-12-14 12:49:05 +09:00
parent 992caa4088
commit 6660469b43
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -47,6 +47,7 @@ public class DocumentTag {
/** /**
* タグのID(String)を設定する * タグのID(String)を設定する
* @param id タグのID
*/ */
public void setId(String id) { public void setId(String id) {
this.id = id; this.id = id;
@ -54,6 +55,7 @@ public class DocumentTag {
/** /**
* タグの名前(String)を設定する * タグの名前(String)を設定する
* @param name タグの名前
*/ */
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
@ -61,6 +63,7 @@ public class DocumentTag {
/** /**
* タグの色(String)を設定する * タグの色(String)を設定する
* @param color タグの色
*/ */
public void setColor(String color) { public void setColor(String color) {
this.color = color; this.color = color;