📄 controllerwebimpl.java.svn-base
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -