public Ftile repeat(
     Swimlane swimlane,
     Ftile repeat,
     Display test,
     Display yes,
     Display out,
     HtmlColor color,
     LinkRendering backRepeatLinkRendering) {
   return factory.repeat(swimlane, repeat, test, yes, out, color, backRepeatLinkRendering);
 }
 public Ftile createWhile(
     Swimlane swimlane,
     Ftile whileBlock,
     Display test,
     Display yes,
     Display out,
     LinkRendering afterEndwhile,
     HtmlColor color) {
   return factory.createWhile(swimlane, whileBlock, test, yes, out, afterEndwhile, color);
 }
 public Ftile start(Swimlane swimlane) {
   return factory.start(swimlane);
 }
 public StringBounder getStringBounder() {
   return factory.getStringBounder();
 }
 public Ftile createGroup(
     Ftile list, Display name, HtmlColor backColor, HtmlColor titleColor, Display headerNote) {
   return factory.createGroup(list, name, backColor, titleColor, headerNote);
 }
 public Ftile createSplit(List<Ftile> all) {
   return factory.createSplit(all);
 }
 public Ftile createFork(Swimlane swimlane, List<Ftile> all) {
   return factory.createFork(swimlane, all);
 }
 public Ftile createIf(Swimlane swimlane, List<Branch> thens, Branch elseBranch) {
   return factory.createIf(swimlane, thens, elseBranch);
 }
 public Ftile decorateOut(Ftile ftile, LinkRendering linkRendering) {
   return factory.decorateOut(ftile, linkRendering);
 }
 public Ftile assembly(Ftile tile1, Ftile tile2) {
   return factory.assembly(tile1, tile2);
 }
 public Ftile addUrl(Ftile ftile, Url url) {
   return factory.addUrl(ftile, url);
 }
 public Ftile addNote(Ftile ftile, Display note, NotePosition notePosition) {
   return factory.addNote(ftile, note, notePosition);
 }
 public Ftile activity(Display label, HtmlColor color, Swimlane swimlane, BoxStyle style) {
   return factory.activity(label, color, swimlane, style);
 }
 public Ftile stop(Swimlane swimlane) {
   return factory.stop(swimlane);
 }
 public Ftile end(Swimlane swimlane) {
   return factory.end(swimlane);
 }