package cz.davza.studentadventure.objects; import cz.davza.studentadventure.base.ItemCollectionBase; import cz.davza.studentadventure.interfaces.IItem; /** * A fixed-size item collection representing the items present in a room. * *
Thin concrete subclass of {@link ItemCollectionBase} — all behaviour is * inherited. The capacity passed to the constructor determines how many bulk * units of items the room can hold at once.
* * @see ItemCollectionBase * @see cz.davza.studentadventure.base.RoomBase */ public class RoomItems extends ItemCollectionBase