summaryrefslogtreecommitdiff
path: root/src/JSONReader.java
blob: 52edf3afaaa0e19d695c55b8300dab5730af8673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.io.*;

/*
 * @author
 * Kian Agheli
 * 
 * References:
 * https://jqlang.github.io/jq/manual/
 * 
 * Date:
 * 2024-04-28
 * 
 * Purpose of class:
 * Read from and interpret JSON files.
 */

public class JSONReader extends Reader {
	public JSONReader(File file) {
		super(file);
	}
	
	/* Something akin to jq's field selection. */
	public String getField(String field) {
		return null;
	}
}