Package com.ibm.sbt.services.client.connections.blogs

Examples of com.ibm.sbt.services.client.connections.blogs.Comment


     
      printWriter.write(sb.toString());
     
      if (commentList != null) {
        for (Iterator<Comment> iter = commentList.iterator(); iter.hasNext(); ) {
          Comment comment = (Comment)iter.next();
         
          sb = new StringBuilder();
          sb.append("\"\"").append(delim);
          sb.append("\"").append(encode(comment.getContent())).append("\"").append(delim);
          sb.append("\"").append(encode(comment.getAuthor().getName())).append("\"").append(delim);
          sb.append("\"").append(encode(comment.getPublished())).append("\"").append(delim);
          sb.append("\"\"").append(delim);
          sb.append("\"").append(encode(comment.getUpdated())).append("\"").append(delim);
          sb.append("\"\"").append(delim);
          sb.append("\"\"").append(delim);
          sb.append("\"\"").append(delim);
          sb.append("\"").append(encode(comment.getTags())).append("\"").append(delim);
          sb.append("\n");
         
          printWriter.write(sb.toString());
        }
      }
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.client.connections.blogs.Comment

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.