81828384858687888990
@Override public InputStream getResource(String path) { InputStream in = loadFromDelegates(path); if (in == null) { throw new ResourceNotFoundException(path); } return in; }
113114115116117118119120
try { File file = userLocalSettings.getUserSettingsFile(path); return new FileOutputStream(file); } catch (FileNotFoundException e) { throw new ResourceNotFoundException(path, e); } }
131132133134135136137138
try { File file = userLocalSettings.getUserSettingsFile(path); return new FileInputStream(file); } catch (FileNotFoundException e) { throw new ResourceNotFoundException(path, e); } }