Add missing method in Book.

This commit is contained in:
Matthieu Gautier 2023-01-24 15:19:09 +01:00
parent 2ef64ac8b3
commit 897c78a718
2 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,8 @@ GETTER(jstring, getId)
GETTER(jstring, getPath)
GETTER(jstring, getHumanReadableIdFromPath)
GETTER(jboolean, isPathValid)
GETTER(jstring, getTitle)

View File

@ -12,11 +12,13 @@ public class Book
public native void update(Book book);
public native void update(Archive archive);
@Override
protected void finalize() { dispose(); }
public native String getId();
public native String getPath();
public native String getHumanReadableIdFromPath();
public native boolean isPathValid();
public native String getTitle();
public native String getDescription();