blob: 6249f55efa45d963684e3ace6af2a7ec15c8498b [file] [log] [blame]
package org.codehaus.jackson.impl;
import java.io.IOException;
import org.codehaus.jackson.*;
/**
* 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.
*/
public interface Indenter
{
public void writeIndentation(JsonGenerator jg, int level)
throws IOException, JsonGenerationException;
/**
* @return True if indenter is considered inline (does not add linefeeds),
* false otherwise
*/
public boolean isInline();
}