( int d )
| 56 | // suddenly call the autoboxed version. |
| 57 | public SB pobj( Object s ) { _sb.append(s.toString()); return this; } |
| 58 | public SB i( int d ) { for( int i=0; i<d+_indent; i++ ) p(" "); return this; } |
| 59 | public SB i( ) { return i(0); } |
| 60 | public SB ip(String s) { return i().p(s); } |
| 61 | public SB s() { _sb.append(' '); return this; } |