/** * Created on 30.03.2005 * * @author Jens Guenther */ package de.unirostock.FactoryMethod.example; import javax.swing.ImageIcon; public abstract class Ship { private ImageIcon itsImgIcon; public abstract ShipServicePlan createShipServicePlan(); public ImageIcon getImgIcon() { return itsImgIcon; } public void setImgIcon( ImageIcon imgIcon ) { itsImgIcon = imgIcon; } }