Open an interaction log file. @param filename the name of the file to open @return True if opening the log file succeeds, false otherwise.
(String filename)
| 34 | * @return True if opening the log file succeeds, false otherwise. |
| 35 | **/ |
| 36 | public static boolean open(String filename) |
| 37 | { |
| 38 | m_is_open = true; |
| 39 | return Native.openLog(filename); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Closes the interaction log. |
no test coverage detected