Ejemplo n.º 1
0
 @Override
 public void setDescription(String description) {
   volumeInfo.setDescription(description);
 }
Ejemplo n.º 2
0
 @Override
 public String getDescription() {
   return volumeInfo.getDescription();
 }
Ejemplo n.º 3
0
 @Override
 public List<String> getAuthors() {
   return volumeInfo.getAuthors();
 }
Ejemplo n.º 4
0
 @Override
 public void setAuthors(List<String> authors) {
   volumeInfo.setAuthors(authors);
 }
Ejemplo n.º 5
0
 @Override
 public int getPages() {
   Integer pages = volumeInfo.getPageCount();
   if (pages == null) return -1;
   return pages;
 }