コンストラクタ追加

This commit is contained in:
r-ca 2024-01-29 00:25:30 +09:00
parent 79a64c3108
commit 67a8f42ef1
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -16,6 +16,11 @@ public class DocumentTagApplyTagDialogExtendedModel extends DocumentTag {
super(documentTag.getId(), documentTag.getName(), documentTag.getColor());
}
public DocumentTagApplyTagDialogExtendedModel(DocumentTag documentTag, boolean isChecked) {
super(documentTag.getId(), documentTag.getName(), documentTag.getColor());
this.isChecked = isChecked;
}
public boolean getIsChecked() {
return isChecked;
}