Uses of Class
uk.org.ogsadai.common.files.DAIFileNotFoundException

Packages that use DAIFileNotFoundException
uk.org.ogsadai.activity.xmldb Contains activity implementations for performing various operations on XML databases. 
uk.org.ogsadai.common.files This package provides a set of common classes for file manipulation. 
 

Uses of DAIFileNotFoundException in uk.org.ogsadai.activity.xmldb
 

Methods in uk.org.ogsadai.activity.xmldb that throw DAIFileNotFoundException
static void XMLDBUtilities.addResource(java.lang.String url, java.io.File file)
          Adds the new resource at the specified location to the specified collection.
 

Uses of DAIFileNotFoundException in uk.org.ogsadai.common.files
 

Methods in uk.org.ogsadai.common.files that throw DAIFileNotFoundException
static java.lang.String FileUtilities.readStringFromFile(java.lang.String fileName)
          Reads the contents of a file into a string.
static byte[] FileUtilities.readByteArrayFromFile(java.lang.String fileName)
          Reads the contents of a file into a byte array.
static java.io.InputStream FileUtilities.openStreamFromFile(java.lang.String fileName)
          Open an InputStream for a file.
static void FileUtilities.renameFile(java.lang.String fileName, java.lang.String newFileName)
          Renames a file.
static void FileUtilities.deleteFile(java.lang.String fileName)
          Deletes a file.
static void FileUtilities.replaceTokensInFile(java.io.File file, java.util.Map tokensAndValues)
          Replaces all occurrences of token regular expressions in a file with the corresponding value strings.
static void FileUtilities.copyFile(java.io.File sourceFile, java.io.File destinationFile)
          Copies the source file to the destination file.
static void FileUtilities.fileExists(java.io.File file)
          A utility method to test whether a file exists.