Package fb4java.beans

Examples of fb4java.beans.Profile


      if (profileListObj != null && profileListObj instanceof JSONArray) {
    JSONArray profiles = (JSONArray) profileListObj;
    int profileSize = profiles.length();
    for (int a = 0; a < profileSize; a++) {
        JSONObject jObj = profiles.getJSONObject(a);
        Profile p = new Profile();
        p.id = jObj.getLong("id");
        p.url = jObj.getString("url");
        p.name = jObj.getString("name");
        p.picSquare = jObj.getString("pic_square");
        p.type = jObj.getString("type");
View Full Code Here

TOP

Related Classes of fb4java.beans.Profile

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.