Package com.dongxuexidu.douban4j.model.shuo

Examples of com.dongxuexidu.douban4j.model.shuo.DoubanShuoMediaObj


      Logger.getLogger(PlayGround.class.getName()).log(Level.SEVERE, null, ex);
    }
  }
 
  private static DoubanShuoAttachementObj generateAtt () {
    DoubanShuoMediaObj media = new DoubanShuoMediaObj();
    media.setHref("http://www.dongxuexidu.com");
    media.setSrc("http://www.dongxuexidu.com/img/logo75.jpg");
    media.setType("image");
    DoubanShuoAttachementObj att = new DoubanShuoAttachementObj();
    List<DoubanShuoMediaObj> ms = new ArrayList<DoubanShuoMediaObj>();
    ms.add(media);
    att.setMedias(ms);
    att.setDescription("http://www.dongxuexidu.com");
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.model.shuo.DoubanShuoMediaObj

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.