/** * Slot is empty boolean. * * @param slot the slot * @return the boolean */ public boolean slotIsEmpty(WornSlot slot) { int index = slot.getSlotNumber(); return (gear[index] == null); }
/** * Gets from slot. * * @param slot the slot * @return the from slot */ public Gear getFromSlot(WornSlot slot) { return gear[slot.getSlotNumber()]; }
/** * ************ Specific Methods * * @param g the g * @return the boolean */ public boolean contains(Gear g) { WornSlot slot = g.getSlot(); return gear[slot.getSlotNumber()].equals(g); }