View Single Post
  #6 (permalink)  
Old 12-11-2007, 07:13 AM
Shaolin Shaolin is offline
Member
 
Join Date: Nov 2007
Posts: 37
Shaolin is on a distinguished road
I tried the following:
Code:
ListIterator vIter = vec.listIterator() ; while ( vIter.hasNext() ) { System.out.println( vec ) ; vIter.next() ; }
And I got this output:

Quote:
[FT@19821f, FT@addbf1]
[FT@19821f, FT@addbf1]
Here is the whole code for Directory(storage):

Last edited by Shaolin : 12-11-2007 at 11:22 PM.
Reply With Quote