MCPcopy Index your code
hub / github.com/NASAWorldWind/WorldWindJava / Indenter

Interface Indenter

src/org/codehaus/jackson/impl/Indenter.java:13–23  ·  view source on GitHub ↗

Interface that defines objects that can produce indentation used to separate object entries and array values. Indentation in this context just means insertion of white space, independent of whether linefeeds are output.

Source from the content-addressed store, hash-verified

11 * linefeeds are output.
12 */
13public interface Indenter
14{
15 public void writeIndentation(JsonGenerator jg, int level)
16 throws IOException, JsonGenerationException;
17
18 /**
19 * @return True if indenter is considered inline (does not add linefeeds),
20 * false otherwise
21 */
22 public boolean isInline();
23}

Callers 10

beforeObjectEntriesMethod · 0.65
writeEndObjectMethod · 0.65
beforeArrayValuesMethod · 0.65
writeEndArrayMethod · 0.65
writeStartObjectMethod · 0.65
writeEndObjectMethod · 0.65
writeStartArrayMethod · 0.65
writeEndArrayMethod · 0.65

Implementers 3

NopIndentersrc/org/codehaus/jackson/impl/DefaultP
FixedSpaceIndentersrc/org/codehaus/jackson/impl/DefaultP
Lf2SpacesIndentersrc/org/codehaus/jackson/impl/DefaultP

Calls

no outgoing calls

Tested by

no test coverage detected