Package reddit.json

Examples of reddit.json.ChildData


                    System.out.println("Downloading [fetched " + linkBatch.size() + " links]");

                    for (ResponseChildData link : linkBatch)
                    {
                        ChildData data = link.getData();

                        /* Get link and title */
                        String url = data.getUrl();
                        String title = data.getTitle().replaceAll("/", " ");
                        String subreddit = data.getSubreddit();

                        if (!subreddits.contains(subreddit))
                            continue;

                        Thread t = new Thread(new Downloader(conf, loader, url, title, new IDownloadCallback() {
View Full Code Here

TOP

Related Classes of reddit.json.ChildData

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.