20 Jan
2009
20 Jan
'09
5:11 p.m.
On Tue, Jan 20, 2009 at 5:48 PM, Thomas Mortagne <[email protected]> wrote:
public List<String> getTags(boolean distinct);
Why boolean distinct ?
To be able to get every occurence of every tag when needed (like in the tag cloud). I could add a getTags() method to ease the most common usage (getting on entry per different tag in the wiki). WDYT ?
public List<String> getPagesWithTag(String tag); public boolean renameTag(String tag, String newTag); public boolean deleteTag(String tag);
JV.