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

com.obdobion.howto.writer.IOutlineWriter Maven / Gradle / Ivy

The newest version!
package com.obdobion.howto.writer;

import java.io.Closeable;

/**
 * 

* IOutlineWriter interface. *

* * @author Chris DeGreef [email protected] */ public interface IOutlineWriter extends Closeable { /** *

* append. *

* * @param trim a {@link java.lang.String} object. * @param wrappingIndentSize a int. */ void append(String trim, int wrappingIndentSize); /** *

* decreaseLevel. *

*/ void decreaseLevel(); /** *

* increaseLevel. *

*/ void increaseLevel(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy