mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 10:19:33 +02:00
new API methods: getBookId, getBookLastTurningTime (no implementation at this moment)
This commit is contained in:
parent
132af46089
commit
9a3ae79474
5 changed files with 68 additions and 7 deletions
|
@ -5,6 +5,7 @@
|
|||
package org.geometerplus.android.fbreader.api;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Date;
|
||||
|
||||
public interface Api {
|
||||
// information about fbreader
|
||||
|
@ -21,8 +22,10 @@ public interface Api {
|
|||
String getBookTitle() throws ApiException;
|
||||
//List<String> getBookAuthors() throws ApiException;
|
||||
List<String> getBookTags() throws ApiException;
|
||||
String getBookFileName() throws ApiException;
|
||||
String getBookFilePath() throws ApiException;
|
||||
String getBookHash() throws ApiException;
|
||||
String getBookId() throws ApiException;
|
||||
Date getBookLastTurningTime() throws ApiException;
|
||||
|
||||
// text information
|
||||
int getParagraphsNumber() throws ApiException;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue