Package facebook4j

Examples of facebook4j.Offer


            JSONArray list = json.getJSONArray("data");
            final int size = list.length();
            ResponseList<Offer> offers = new ResponseListImpl<Offer>(size, json);
            for (int i = 0; i < size; i++) {
                JSONObject offerJSONObject = list.getJSONObject(i);
                Offer offer = new OfferJSONImpl(offerJSONObject);
                if (conf.isJSONStoreEnabled()) {
                    DataObjectFactoryUtil.registerJSONObject(offer, offerJSONObject);
                }
                offers.add(offer);
            }
View Full Code Here

TOP

Related Classes of facebook4j.Offer

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.