// {{ Identification
 public String title() {
   final TitleBuffer buf = new TitleBuffer();
   buf.append(getTaxRecord().getCustomer().getPpsn());
   buf.append(": ");
   buf.append(getContainer().titleOf(getTaxYear()));
   return buf.toString();
 }
Example #2
0
 // {{ Identification on the UI
 public String title() {
   final TitleBuffer buf = new TitleBuffer();
   buf.append(getDescription());
   if (isComplete()) {
     buf.append(" - Completed!");
   } else {
     if (getDueBy() != null) {
       buf.append(" due by ", getDueBy());
     }
   }
   return buf.toString();
 }
 // region > title, icon
 public String title() {
   final TitleBuffer buf = new TitleBuffer();
   buf.append(getRegulationTitle());
   return buf.toString();
 }
 // {{ Identification
 public String title() {
   TitleBuffer buf = new TitleBuffer();
   buf.append(getCustomer().getPpsn());
   buf.append(" (correspondence history)");
   return buf.toString();
 }