Example #1
0
 public void setSoftlyClosed(boolean softlyClosed) throws IOException {
   file.setSoftlyClosed(softlyClosed);
 }
Example #2
0
 public void setSoftlyClosed(boolean softlyClosed) throws IOException {
   for (OFile file : files) {
     if (file != null && file.isOpen()) file.setSoftlyClosed(softlyClosed);
   }
 }