예제 #1
0
파일: Section.java 프로젝트: GKroly/szarhf
 private String selectedHorizontalLine(int width, ConnectorStyle style) {
   return "<div style=\"border-top:2px "
       + style.name().toLowerCase()
       + " #00BFFF; width:"
       + width
       + "px\">";
 }
예제 #2
0
파일: Section.java 프로젝트: GKroly/szarhf
 private String selectedVerticalLine(int height, ConnectorStyle style) {
   return "<div style=\"border-left:2px "
       + style.name().toLowerCase()
       + " #00BFFF; height:"
       + height
       + "px\">";
 }