private static HTextFlowTarget addHTextFlowTarget(HLocale hLocale,
HTextFlow hTextFlow, String username) {
HTextFlowTarget hTextFlowTarget =
new HTextFlowTarget(hTextFlow, hLocale);
HPerson lastModifiedBy = new HPerson();
HAccount account = new HAccount();
account.setUsername(username);
lastModifiedBy.setAccount(account);
hTextFlowTarget.setLastModifiedBy(lastModifiedBy);
hTextFlowTarget.setLastChanged(new Date());
return hTextFlowTarget;
}