Package facebook4j

Examples of facebook4j.GeoLocation


                comments = new PagableListImpl<Comment>(0);
            }
            type = getRawString("type", json);
            if (!json.isNull("coordinates")) {
                JSONObject coordinatesJSONObject = json.getJSONObject("coordinates");
                coordinates = new GeoLocation(coordinatesJSONObject.getDouble("latitude"),
                                              coordinatesJSONObject.getDouble("longitude"));
            }
        } catch (JSONException jsone) {
            throw new FacebookException(jsone.getMessage(), jsone);
        }
View Full Code Here

TOP

Related Classes of facebook4j.GeoLocation

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.