mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
getTagIdsを追加
This commit is contained in:
parent
d61104d1ab
commit
d47832ac82
|
@ -35,6 +35,14 @@ public class DocumentMeta {
|
||||||
return tags;
|
return tags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<String> getTagIds() {
|
||||||
|
List<String> tagIds = new ArrayList<>();
|
||||||
|
for (DocumentTag tag : tags) {
|
||||||
|
tagIds.add(tag.getId());
|
||||||
|
}
|
||||||
|
return tagIds;
|
||||||
|
}
|
||||||
|
|
||||||
// Setter
|
// Setter
|
||||||
|
|
||||||
public void setId(String id) {
|
public void setId(String id) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user