I hope I can have some great suggestion how I can solve this here:
I have this text file with places and names - name detail indicates the place(s) that the person has v
Instead of having a Name class, how about a Traveler class that has String name and List places? You could then have a method add(Place p) on the Traveler class.
String name
List places
add(Place p)