MCPcopy Create free account
hub / github.com/GateNLP/gate-core / padPr

Method padPr

src/main/java/gate/util/Out.java:269–274  ·  view source on GitHub ↗

Print padding followed by String s.

(String s, int padding)

Source from the content-addressed store, hash-verified

267
268 /** Print padding followed by String s. */
269 public static void padPr(String s, int padding) {
270 for(int i=0; i<padding; i++)
271 out.print(padChar);
272 out.print(s);
273 out.flush();
274 } // padPr(String,int)
275
276} // Out
277

Callers

nothing calls this directly

Calls 2

printMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected