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

org.tinygroup.menucommand.CommandHandler Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.tinygroup.menucommand;

import org.tinygroup.context.Context;

/**
 * 命令处理句柄
 * @author yancheng11334
 *
 */
public interface CommandHandler {

	/**
	 * 命令前置操作
	 * @param context
	 */
	void beforeExecute(Context context);
	
	
	/**
	 * 命令后置操作
	 * @param context
	 */
	void afterExecute(Context context);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy