MCPcopy Index your code
hub / github.com/antlr/codebuff / toString

Method toString

output/java/1.4.17/NumberRenderer.java:45–52  ·  view source on GitHub ↗
(Object o, String formatString, Locale locale)

Source from the content-addressed store, hash-verified

43
44public class NumberRenderer implements AttributeRenderer {
45 @Override
46 public String toString(Object o, String formatString, Locale locale) {
47 // o will be instanceof Number
48 if (formatString==null ) return o.toString();
49 Formatter f = new Formatter(locale);
50 f.format(formatString, o);
51 return f.toString();
52 }
53}

Callers

nothing calls this directly

Calls 2

formatMethod · 0.95
toStringMethod · 0.65

Tested by

no test coverage detected