Uses of Class
ch.claudio.contactdb.data.Place

Packages that use Place
ch.claudio.contactdb The conteact db shall help me organize the different information I have about persons I know. 
ch.claudio.contactdb.data   
 

Uses of Place in ch.claudio.contactdb
 

Methods in ch.claudio.contactdb that return types with arguments of type Place
 java.util.List<Place> Model.addPlace(Place place)
          Test it the person ist not yet stored in the database and add it..
 

Methods in ch.claudio.contactdb with parameters of type Place
 java.util.List<Place> Model.addPlace(Place place)
          Test it the person ist not yet stored in the database and add it..
 

Uses of Place in ch.claudio.contactdb.data
 

Methods in ch.claudio.contactdb.data that return Place
 Place Person.getBirthplace()
           
 Place Address.getPlace()
           
 

Methods in ch.claudio.contactdb.data with parameters of type Place
 void Person.setBirthplace(Place birthplaceArg)
           
 void Address.setPlace(Place placeArg)
           
 

Constructors in ch.claudio.contactdb.data with parameters of type Place
Address(Person personArg, java.lang.String streetArg, java.lang.String extraAddressArg, Place placeArg)
           
Person(java.lang.String givennameArg, java.lang.String middlenamesArg, java.lang.String surnameArg, FuzzyDate birthdayArg, Place birthplaceArg)