Example #1
0
 private String selectedHorizontalLine(int width, ConnectorStyle style) {
   return "<div style=\"border-top:2px "
       + style.name().toLowerCase()
       + " #00BFFF; width:"
       + width
       + "px\">";
 }
Example #2
0
 private String selectedVerticalLine(int height, ConnectorStyle style) {
   return "<div style=\"border-left:2px "
       + style.name().toLowerCase()
       + " #00BFFF; height:"
       + height
       + "px\">";
 }