26 lines
375 B
Java
Raw Normal View History

2014-08-18 23:18:15 +03:00
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;
}
}