Exemplo n.º 1
0
 // returns whether the given file can be executed by this process
 public static boolean executable(java.io.File file) throws ServiceException {
   return file == null ? false : file.canExecute();
 }