Quote.java :  » Client » android-client-app » com » google » android » entity » Android Open Source

Android Open Source » Client » android client app 
android client app » com » google » android » entity » Quote.java
package com.google.android.entity;

public class Quote {

  private int quoteId;
  private String quoteText;
  private int categoryId;
  private int authorId;
  
  public int getQuoteId() {
    return quoteId;
  }
  public void setQuoteId(int quoteId) {
    this.quoteId = quoteId;
  }
  public String getQuoteText() {
    return quoteText;
  }
  public void setQuoteText(String quoteText) {
    this.quoteText = quoteText;
  }
  public int getCategoryId() {
    return categoryId;
  }
  public void setCategoryId(int categoryId) {
    this.categoryId = categoryId;
  }
  public int getAuthorId() {
    return authorId;
  }
  public void setAuthorId(int authorId) {
    this.authorId = authorId;
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.