All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hisrc.jscm.codemodel.io.IndentedAppendable Maven / Gradle / Ivy

The newest version!
package org.hisrc.jscm.codemodel.io;

import java.io.IOException;

public interface IndentedAppendable extends Appendable {

	public IndentedAppendable append(char c) throws IOException;

	public IndentedAppendable append(CharSequence csq) throws IOException;

	public IndentedAppendable append(CharSequence csq, int start, int end)
			throws IOException;

	public IndentedAppendable indent(CharSequence indentation);

	public IndentedAppendable lineTerminator();

	public IndentedAppendable whiteSpace();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy