// #6 SHELL package ooos; import java.util.Vector; // What does UML says about inheritance? public class FIFOQueue { public FIFOQueue(String name) { // Where is the storage for name? // How to pass this data? } // What is the only method required by FIFO? // Why is the vector visible here in FIFO? }