package graph; /** A vertex in an AdjListDigraph. */ public class DirectedAdjListVertex extends StoredVertex { FILL THIS IN // Hint: use some collection type from java.util to store the // list of out-edges. Or else use your FancyNodeList from // homework 4. }