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

com.jpattern.core.command.ICommandResult Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.core.command;

import com.jpattern.shared.result.IErrorMessage;
import com.jpattern.shared.result.IResult;

/**
 * 
 * @author Francesco Cina'
 *
 * 12/set/2011
 */
public interface ICommandResult extends IResult {

	boolean isValid();
	
	void addErrorMessage(IErrorMessage errorMessage);
    
	String asString();
	
	boolean isExecutionEnd();
	
	void waitExecutionEnd() throws InterruptedException;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy