2014-10-08 13:42:12 +01:00

26 lines
374 B
Java

package com.iluwatar;
public class Item {
private ItemType type;
private String name;
public Item(ItemType type, String name) {
this.setType(type);
this.name = name;
}
@Override
public String toString() {
return name;
}
public ItemType getType() {
return type;
}
public void setType(ItemType type) {
this.type = type;
}
}