Ejemplo n.º 1
0
 public static List<Object[]> showVandalismByTitle(String title)
     throws ClientHandlerException, UniformInterfaceException, JSONException, URISyntaxException {
   List<Object[]> vandalismAndCount = new ArrayList<Object[]>();
   vandalismAndCount = GenerateTxt.showVandalism("title", title);
   return vandalismAndCount;
 }
Ejemplo n.º 2
0
 public static List<Object[]> showAllVandalism()
     throws ClientHandlerException, UniformInterfaceException, JSONException, URISyntaxException {
   List<Object[]> vandalismAndCount = new ArrayList<Object[]>();
   vandalismAndCount = GenerateTxt.showVandalism("all", null);
   return vandalismAndCount;
 }