Item - GensokyoGears/itemsets GitHub Wiki

Item.java
This class describes our Item object. The object consists of following parameters:
String name;
String id;
String image;
String description;
String plaintext;
Integer count;

The class also contains basic constructor:
public Item(String name, String id, String image, String description, String plaintext, Integer count)
{ super();
this.name = name;
this.id = id;
this.image = image;
this.description = description;
this.plaintext = plaintext;
this.count = count; }

and getters and setters for all elements.