Comments.java :  » API » tweetphoto-api-java » com » tweetphoto » api » Android Open Source

Android Open Source » API » tweetphoto api java 
tweetphoto api java » com » tweetphoto » api » Comments.java
package com.tweetphoto.api;

import java.util.ArrayList;

public class Comments {
  int            m_count;
  int            m_startIndex;
  long          m_photoId;
  
  ArrayList<Comment>    m_list;     // = new ArrayList<Comment>();

  String describe() {
    String retVal = "Count: " + m_count + ", StartIndex: " + m_startIndex + ", PhotoId: " + m_photoId + ", List: " + m_list;
    return retVal;
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.