return wrappedCollection;
}
public List getBookmarks() {
TreeSet initialCollection = new TreeSet(new BookmarkComparator());
initialCollection.addAll(this.pojo.getBookmarks());
// iterate through and wrap
// we force the use of an ArrayList because it should be good enough to cover
// for any Collection type we encounter.