for(TopicListJson.Page page : topicsJson) {
for(TopicListJson.Topic topic : page.getThreads()) {
Topic t = new Topic(topic.getNo(), 0, 0);
t.setLastModTimestamp(topic.getLastModified());
t.setLastPage(page.getPage());
threadList.addThread(t);
}
}
return threadList;
}