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

nyla.solutions.commas.Command Maven / Gradle / Ivy

The newest version!
package nyla.solutions.commas;

/**
 * This is an abstract interface to execute an command operation.
 * @author Gregory Green
 *
 */
public interface Command
{
	/**
	 * Implemented command interface to execute an operation on a argument and possibility return values
	 * @param input the input object 
	 * @return the altered result
	 */
	ReturnType execute(InputType input);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy