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

org.duelengine.merge.PlaceholderGenerator Maven / Gradle / Ivy

package org.duelengine.merge;

import java.io.File;
import java.io.IOException;
import java.util.List;

public interface PlaceholderGenerator {

	/**
	 * Gets the extension which this compaction emits
	 * @return
	 */
	String getTargetExtension();

	/**
	 * Perform build
	 * @param manager
	 * @param target output file
	 * @param children
	 * @throws IOException
	 */
	void build(BuildManager manager, File target, List children) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy