Add flavour attribute to book.

Fix #259
Fix kiwix/kiwix-tools#316
This commit is contained in:
Matthieu Gautier 2020-01-30 14:51:37 +01:00
parent ed66344f31
commit 5cee77858e
2 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,7 @@ GETTER(jstring, getPublisher)
GETTER(jstring, getDate) GETTER(jstring, getDate)
GETTER(jstring, getUrl) GETTER(jstring, getUrl)
GETTER(jstring, getName) GETTER(jstring, getName)
GETTER(jstring, getFlavour)
GETTER(jstring, getTags) GETTER(jstring, getTags)
GETTER(jlong, getArticleCount) GETTER(jlong, getArticleCount)
GETTER(jlong, getMediaCount) GETTER(jlong, getMediaCount)

View File

@ -19,6 +19,7 @@ public class Book
public native String getDate(); public native String getDate();
public native String getUrl(); public native String getUrl();
public native String getName(); public native String getName();
public native String getFlavour();
public native String getTags(); public native String getTags();
/** /**
* Return the value associated to the tag tagName * Return the value associated to the tag tagName