57585960616263
* @param file * @throws CoreException */ public JsonTextValidator(IFile file) throws CoreException { super(); this.parser = new JsonFileReader(file); }
66676869707172
* Constructor taking a File object. * @param file * @throws FileNotFoundException */ public JsonTextValidator(File file) throws FileNotFoundException { this.parser = new JsonFileReader(file); }