private static void setProjectAndIterationSlug(HTextFlow hTextFlow,
String projectSlug, String iterationSlug) {
HProjectIteration projectIteration = new HProjectIteration();
projectIteration.setSlug(iterationSlug);
HProject project = new HProject();
project.setName(projectSlug);
projectIteration.setProject(project);
hTextFlow.getDocument().setProjectIteration(projectIteration);
}