Item.java :  » App » theoldtoad » com » deltabravomedia » theoldtoad » Android Open Source

Android Open Source » App » theoldtoad 
theoldtoad » com » deltabravomedia » theoldtoad » Item.java
package com.deltabravomedia.theoldtoad;

public class Item {
    private String itemName;
    private String iconName;
    private String className;
    private String cost;
    private String description;
    private String recommend;
    private String headerName;
    
    public Item(String name, String cost, String description) {
    this.setItemName(name);
    this.setCost(cost);
    this.setDescription(description);
  }
    
  public Item() {
  }

  public void setItemName(String itemName) {
        this.itemName = itemName;
    }
    public String getItemName() {
        return itemName;
    }
    public void setIconName(String iconName) {
        this.iconName = iconName;
    }
    public String getIconName() {
        return iconName;
    }
  public void setClassName(String className) {
    this.className = className;
  }
  public String getClassName() {
    return className;
  }
  public void setCost(String cost) {
    this.cost = cost;
  }
  public String getCost() {
    return cost;
  }
  public void setDescription(String description) {
    this.description = description;
  }
  public String getDescription() {
    return description;
  }
  public void setRecommend(String recommend) {
    this.recommend = recommend;
  }
  public String getRecommend() {
    return recommend;
  }
  public void setHeaderName(String headerName) {
    this.headerName = headerName;
  }
  public String getHeaderName() {
    return headerName;
  }
}
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.