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

org.javabuilders.ICustomCommand Maven / Gradle / Ivy

The newest version!
package org.javabuilders;

/**
 * Interface for custom commands
 * @author Jacek Furmankiewicz
 *
 */
public interface ICustomCommand {

	/**
	 * Custom command implementation
	 * @param result Current build result
	 * @param  source The source that generated the event
	 * @return Return value
	 */
	T  process(BuildResult result, Object source);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy