( Scanner scanner, int maxItems )
| 322 | return coverPageCache.getImage( bookId ); |
| 323 | } |
| 324 | public boolean loadFromDB( Scanner scanner, int maxItems ) |
| 325 | { |
| 326 | Log.v("cr3", "History.loadFromDB()"); |
| 327 | mBooks = mDB.loadRecentBooks(scanner.mFileList, maxItems); |
| 328 | mRecentBooksFolder = scanner.mRoot.getDir(0); |
| 329 | if ( mRecentBooksFolder==null ) |
| 330 | Log.v("cr3", "History.loadFromDB() : mRecentBooksFolder is null"); |
| 331 | updateRecentDir(); |
| 332 | return true; |
| 333 | } |
| 334 | |
| 335 | public boolean saveToDB( ) |
| 336 | { |
no test coverage detected