Examples of DoubanTagObj


Examples of com.dongxuexidu.douban4j.model.common.DoubanTagObj

    rat.setValue(rating);
    col.setRating(rat);
    if (tags != null && !tags.isEmpty()) {
      List<DoubanTagObj> tagsList = new ArrayList<DoubanTagObj>();
      for (String t : tags) {
        DoubanTagObj tag = new DoubanTagObj();
        tag.setName(t);
        tagsList.add(tag);
      }
      col.setTags(tagsList);
    }
    if (subjectId == null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.