1 23 package org.infoglue.cms.applications.workflowtool.function.title; 24 25 import java.util.Date ; 26 27 import org.infoglue.cms.applications.common.VisualFormatter; 28 29 32 public class DateTitlePopulator extends Populator 33 { 34 37 private static final String DATETIME_PATTERN = "yyyy-MM-dd HH:mm"; 38 39 40 41 44 public DateTitlePopulator() 45 { 46 super(); 47 } 48 49 52 protected String getTitle() 53 { 54 return new VisualFormatter().formatDate(new Date (), DATETIME_PATTERN); 55 } 56 } 57 | Popular Tags |