ResultRecord
This class is annotated for XML binding.
372373374375376377378379380381382
} // Logs a result with the ResultLogManager private boolean logResult(File file,Action[] actions) { try { logManager.log(new ResultRecord(config, actions,file)); return true; } catch (Exception x) { LOG.fine("Failed to log: "+file.getAbsolutePath()); } return false;
363364365366367368369370371372373