package kernel; /** * * @author Jan Horký * @since 10.11.2008 * @version 1.0 */ public interface IProcess { /** * Wants implementation of realization method
* Method for overriding by commands classes * * @throws AppException * global application exception */ public void realization() throws AppException; /** * Wants implementation of partly help method
* Method for overriding by commands classes */ public String getHelp(); }