(String text, int x, int y, Font font, int justification, Overlay overlay)
| 100 | } |
| 101 | |
| 102 | private void add(String text, int x, int y, Font font, int justification, Overlay overlay) { |
| 103 | TextRoi roi = new TextRoi(text, x, y, font); |
| 104 | roi.setStrokeColor(TEXT_COLOR); |
| 105 | roi.setJustification(justification); |
| 106 | overlay.add(roi); |
| 107 | } |
| 108 | |
| 109 | } |
no test coverage detected