// #5 SHELL package ooos; // Remember to new objects, even if not shown in UML import java.util.Vector; // Note ITALICS on UML Queue public abstract class Queue { // UML "#" variables public Queue(String name) { // what to do with this name? } // UML + methods }