Android Open Source - DropboxTest Ebook






From Project

Back to project page DropboxTest.

License

The source code is released under:

MIT License

If you think the Android project DropboxTest 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.dsaiztc.dropboxtest.model;
//w w  w. jav a 2  s .c o  m
import android.graphics.drawable.Drawable;

import com.dropbox.sync.android.DbxFileInfo;

public class Ebook
{
  private DbxFileInfo mDbxFileInfo;
  private Drawable mDrawable;
  private String title;
  private String author;

  public Ebook()
  {
    mDbxFileInfo = null;
    mDrawable = null;
    title = null;
    author = null;
  }

  public DbxFileInfo getDbxFileInfo()
  {
    return mDbxFileInfo;
  }

  public void setDbxFileInfo(DbxFileInfo dbxFileInfo)
  {
    this.mDbxFileInfo = dbxFileInfo;
  }

  public Drawable getDrawable()
  {
    return mDrawable;
  }

  public void setDrawable(Drawable drawable)
  {
    this.mDrawable = drawable;
  }
  
  public String getTitle()
  {
    return title;
  }

  public void setTitle(String title)
  {
    this.title = title;
  }

  public String getAuthor()
  {
    return author;
  }

  public void setAuthor(String author)
  {
    this.author = author;
  }
}




Java Source Code List

com.dsaiztc.dropboxtest.MainActivity.java
com.dsaiztc.dropboxtest.adapter.ItemAdapter.java
com.dsaiztc.dropboxtest.adapter.ListItem.java
com.dsaiztc.dropboxtest.model.Ebook.java