Package com.dongxuexidu.douban4j.model.common

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


      return null;
    }
    String typeStr = "http://www.douban.com/2007#event." + type.getValue();
   
    //<category scheme="http://www.douban.com/2007#kind" term="http://www.douban.com/2007#event.music"/>
    DoubanCategoryObj cat = new DoubanCategoryObj();
    cat.setScheme("http://www.douban.com/2007#kind");
    cat.setTerm(typeStr);
    entry.setCategory(cat);
    DoubanAttributeObj inviteOnlyAtt = new DoubanAttributeObj();
    inviteOnlyAtt.setName("invite_only");
    DoubanAttributeObj canInviteAtt = new DoubanAttributeObj();
    canInviteAtt.setName("can_invite");
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.model.common.DoubanCategoryObj

Copyright © 2018 www.massapicom. 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.