This method should typically only be called from the Control class
(String fileName)
| 149 | |
| 150 | /** This method should typically only be called from the Control class */ |
| 151 | public void openSession(String fileName) |
| 152 | throws SQLException, SAXException, IOException, Exception { |
| 153 | getSession().open(fileName); |
| 154 | } |
| 155 | |
| 156 | public void openSession(String fileName, final SessionListener callback) { |
| 157 | getSession().open(fileName, callback); |
no test coverage detected