controllerwebimpl.java.svn-base

来自「一个timesheet程序,用来统计开发人员的度量衡web在线程序.用于软件行业」· SVN-BASE 代码 · 共 29 行

SVN-BASE
29
字号
package com.nsi.control.web;

import java.util.List;

import com.nsi.control.backend.handles.StateMachine;
import com.nsi.control.event.NsiEvent;
import com.nsi.control.exceptions.NsiEventException;

/**
 * @author Chris Ye, created on Oct 6, 2008
 *
 * ControllerWebImpl
 */
public class ControllerWebImpl
{
	private StateMachine sm;
	/**
	 * constructor of ControllerWebImpl 
	 */
	public ControllerWebImpl()
	{
		sm = new StateMachine();
	}
	public List<String> handleEvent(NsiEvent ev) throws NsiEventException
	{
		return sm.handleEvent(ev);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?