MCPcopy Create free account
hub / github.com/RealTimeGenomics/rtg-tools / addSeparator

Method addSeparator

src/main/java/com/rtg/util/RstTable.java:71–77  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

69 }
70
71 private void addSeparator() {
72 for (int width : mWidths) {
73 mTable.append("+").append(StringUtils.repeat("-", width + mSpacing * 2));
74 }
75 mTable.append("+");
76 mTable.append(StringUtils.LS);
77 }
78
79 private String widthString(int width) {
80 return "%-" + width + "s";

Callers 2

addHeadingMethod · 0.95
addRowMethod · 0.95

Calls 2

repeatMethod · 0.95
appendMethod · 0.65

Tested by

no test coverage detected