// DONE: fix it so that if an individual is still alive then the person's
// name, birthDate and deathDate will be masked so that a living person's
// data is not displayed on the web site
Individual individual = new Individual(gedcomURL.getGedcomURL()+"/"+indi.getId());
individual.id = indi.getId();
int gedcomSex = indi.getSex();
if(gedcomSex == PropertySex.UNKNOWN)
{
individual.setGender(Individual.UNKNOWN);
}
else if(gedcomSex == PropertySex.MALE)
{
individual.setGender(Individual.MALE);
}
else if(gedcomSex == PropertySex.FEMALE)
{
individual.setGender(Individual.FEMALE);
}
if(isLiving(indi))
{
// DONE: the .charAt(0) method call causes a