Package com.google.code.stackexchange.schema

Examples of com.google.code.stackexchange.schema.Site


      System.out.println("Total questions:" + stats.getTotalQuestions());
      System.out.println("Total unanswered questions:" + stats.getTotalUnanswered());
      System.out.println("Total users:" + stats.getTotalUsers());
      System.out.println("Total votes:" + stats.getTotalVotes());
      System.out.println("API Version:" + stats.getApiVersion().getVersion() + ":" + stats.getApiVersion().getRevision());
      Site site = stats.getSite();
      System.out.println("Site Name:" + site.getName());
      System.out.println("API Endpoint:" + site.getApiEndpoint());
      System.out.println("Site URL:" + site.getSiteUrl());
      System.out.println("Site Styling:" + site.getStyling().getLinkColor());
    }
  }
View Full Code Here

TOP

Related Classes of com.google.code.stackexchange.schema.Site

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.