Exemplo n.º 1
0
 /**
  * Creates a JSON dataset based on an inputstream
  *
  * @param is An inputstream pointing to a JSON dataset
  */
 public JsonDataSet(InputStream is) {
   tables = tableParser.getTables(is);
 }
Exemplo n.º 2
0
 /**
  * Creates a JSON dataset based on a file
  *
  * @param file A JSON dataset file
  */
 public JsonDataSet(File file) {
   tables = tableParser.getTables(file);
 }