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

org.duelengine.duel.codegen.CodeGenerator Maven / Gradle / Ivy

package org.duelengine.duel.codegen;

import java.io.IOException;

import org.duelengine.duel.ast.VIEWCommandNode;

public interface CodeGenerator {

	public String getFileExtension();

	public void write(Appendable output, VIEWCommandNode... views) throws IOException;

	public void write(Appendable output, Iterable views) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy