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

jadex.xml.IReturnValueCommand Maven / Gradle / Ivy

package jadex.xml;

/**
 *  Interface for a command with return value.
 */
public interface IReturnValueCommand
{
	/**
	 *  Execute the command and optionally deliver a result.
	 *  @param args The arguments.
	 *  @return The result.
	 */
	public Object execute(Object args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy