Android Open Source - AndroidMooch Book






From Project

Back to project page AndroidMooch.

License

The source code is released under:

Copyright (c) 2010 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software witho...

If you think the Android project AndroidMooch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.github.stchris.models;
//www .  ja  v  a 2  s  .c o  m
public class Book {
  public String title;
  public String author;
  public String publisher;
  public String publicationDate;
  public String edition;
  public String numberOfPages;
  public String binding;
  public String store;
  public String price;
  public String currency;
  public String smallImgUrl;
  public String smallImgHeight;
  public String smallImgWidth;
  public String largeImgUrl;
  public String largeImgHeight;
  public String largeImgWidth;
  public String isbn;

  public String toString() {
    return "\"" + title + "\"\nby " + author + "\n\nPublisher: "
        + publisher + "\nPublication date: " + publicationDate
        + "\nNumber of pages: " + numberOfPages + "\nBinding: "
        + binding + "\n\nStore: " + store + "\nPrice: " + price + "(" + currency + ")";
  }
}




Java Source Code List

com.github.stchris.activities.BookInfoActivity.java
com.github.stchris.activities.BookSearchActivity.java
com.github.stchris.activities.BookSearchListActivity.java
com.github.stchris.activities.InventoryActivity.java
com.github.stchris.activities.MainActivity.java
com.github.stchris.activities.ShowImageActivity.java
com.github.stchris.activities.WishlistActivity.java
com.github.stchris.models.BookListAdapter.java
com.github.stchris.models.Book.java
com.github.stchris.queries.Constants.java
com.github.stchris.util.JSONUtil.java
com.github.stchris.util.Util.java
com.github.stchris.views.BookListView.java