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

com.g2forge.enigma.bash.convert.IBashRenderContext Maven / Gradle / Ivy

Go to download

Model & renderer for bash scripts. Yes, it can properly and safely quote them too.

The newest version!
package com.g2forge.enigma.bash.convert;

import com.g2forge.alexandria.java.close.ICloseable;
import com.g2forge.alexandria.java.text.quote.BashQuoteType;
import com.g2forge.alexandria.java.text.quote.QuoteControl;
import com.g2forge.enigma.backend.convert.textual.ITextualRenderContext;

public interface IBashRenderContext extends ITextualRenderContext {
	public ICloseable block();

	public boolean isBlockMode();

	public ICloseable line();

	public ICloseable quote();

	public ICloseable raw();

	public ICloseable token(BashQuoteType quoteType, QuoteControl quoteControl);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy