Package fb4java.beans

Examples of fb4java.beans.Post


      if (postListObj != null && postListObj instanceof JSONArray) {
    JSONArray posts = (JSONArray) postListObj;
    int postSize = posts.length();
    for (int a = 0; a < postSize; a++) {
        JSONObject jObj = posts.getJSONObject(a);
        Post p = new Post();
        p.postId = jObj.getString("post_id");
        p.viewerId = jObj.getLong("viewer_id");
        p.sourceId = jObj.getLong("source_id");
        p.type = jObj.getInt("type");
        // jObj.getLong("app_id");
View Full Code Here

TOP

Related Classes of fb4java.beans.Post

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.