I tried the following:
ListIterator vIter = vec.listIterator() ;
while ( vIter.hasNext() )
{
System.out.println( vec ) ;
vIter.next() ;
}
And I got this output:
[FT@19821f, FT@addbf1]
[FT@19821f, FT@addbf1]
Here is the whole code for Directory(storage):