/** * Created on 28.03.2005 * * @author Jens Guenther */ package de.unirostock.Prototype.example.gui; import de.unirostock.Prototype.example.Ship; public interface ShipInfoPanelModel { public abstract Ship getShipPrototype(); public abstract String getShipMaterial(); public abstract String getShipName(); }