y = drawRow(g2d, y, firstColumn, sb.toString());
y += positions.lineHeight;
// Birth
DateObject now = new DateObject(Date.getInstance(0).getCurrentDate()); // TODO ugly
y = drawRow(g2d, y, firstColumn, "Born");
sb = new StringBuilder();
ICity birthPlace = data.getBirthPlace();
sb.append("on ").append(data.getBirthDate().toDisplayString()).append(" in ").append(birthPlace.getName()).append(", ");
sb.append("Age ").append(data.getAge(now));