package de.dass_it.vanhelsing.gui.items; /* * Abstract class to implement the type field including the accessor methods. * All ItemTypes should extend this class. */ public abstract class ItemType { private String type; public void setType(String type) { this.type = type; } public String getType() { return type; } }