package de.dass_it.vanhelsing.gui.items; public abstract class ItemType { private String type; public void setType(String type) { this.type = type; } public String getType() { return type; } public String getTypePage(){ return ("/WEB-INF/" + type + ".jspx"); } }