protected Display getInLinkRenderingDisplay(Ftile tile) {
   final LinkRendering linkRendering = tile.getInLinkRendering();
   if (linkRendering == null) {
     return Display.NULL;
   }
   return linkRendering.getDisplay();
 }
 protected HtmlColor getInLinkRenderingColor(Ftile tile) {
   final HtmlColor color;
   final LinkRendering linkRendering = tile.getInLinkRendering();
   if (linkRendering == null || linkRendering.getColor() == null) {
     color = rose.getHtmlColor(getSkinParam(), ColorParam.activityArrow);
   } else {
     color = linkRendering.getColor();
   }
   return color;
 }
示例#3
0
 public static Ftile withSwimlaneOut(Ftile ftile, Swimlane out) {
   return new FtileWithSwimlanes(ftile, ftile.getSwimlaneIn(), out);
 }