Package com.marcusilgner.ghcity.models

Examples of com.marcusilgner.ghcity.models.GithubIssue


               throw new RuntimeException("Error fetching issue data", e);
           }
        }

        private IssueData parseIssue(final InputStream _json) {
            GithubIssue issue = Json.fromJson(_json, GithubIssue.class);
            String url = getUrl(host, id);
            IssueData result = new IssueData(id, issue.title, issue.state, url, issue.isResolved());
            return result;
        }
View Full Code Here

TOP

Related Classes of com.marcusilgner.ghcity.models.GithubIssue

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.