Searched defs:nSpaces (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractDiagnosticFormatter.java268 protected String formatSourceLine(JCDiagnostic d, int nSpaces) { argument
277 buf.append(indent(line, nSpaces));
284 buf.append(indent("^", nSpaces));
322 * @param nSpaces the amount of spaces to be added to the result string
325 protected String indentString(int nSpaces) { argument
327 if (nSpaces <= spaces.length())
328 return spaces.substring(0, nSpaces);
331 for (int i = 0 ; i < nSpaces ; i++)
342 * @param nSpaces the amount of spaces that should be prepended to each line
346 protected String indent(String s, int nSpaces) { argument
[all...]
H A DBasicDiagnosticFormatter.java333 * @param nSpaces amount of spaces for the specified diagnostic part
335 public void setIndentation(DiagnosticPart diagPart, int nSpaces) { argument
336 indentationLevels.put(diagPart, nSpaces);

Completed in 31 milliseconds