* The location of TOD's JAR files.
* @return the library path
*/
public static String getTODJARPath() {
try {
InstalledFileLocator locator = InstalledFileLocator.getDefault();
File directory = locator.locate("modules/ext", "org.tod", false);
return directory.getAbsolutePath() + File.separator;
} catch (Exception ex) {
Logger.getLogger(TODUtils.class.getName()).log(Level.SEVERE, null, ex);
}
return null;