⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eventsupport.java.svn-base

📁 一个timesheet程序,用来统计开发人员的度量衡web在线程序.用于软件行业
💻 SVN-BASE
字号:
package com.nsi.control.event;

/**
 * @author Chris Ye, created on Sep 30, 2008
 *
 * EventSupport
 */
public abstract class EventSupport implements NsiEvent
{
	private String loginUser;
	private int actionType;
	/**
	 * constructor of EventSupport
	 */
	public EventSupport()
	{
	}
	/**
	 * constructor of EventSupport
	 * @param actionType
	 */
	public EventSupport(int actionType)
	{
		this.actionType = actionType;
	}
	/**
	 * @see com.nsi.control.event.NsiEvent#getEventName()
	 */
	public String getEventName()
	{
		return null;
	}
	/**
	 * @see com.nsi.control.event.NsiEvent#getHandleName()
	 */
	public String getHandleName()
	{
		return null;
	}
	public String getLoginUser()
	{
		return loginUser;
	}
	public void setLoginUser(String loginUser)
	{
		this.loginUser = loginUser;
	}
	public int getActionType()
	{
		return actionType;
	}
	public void setActionType(int actionType)
	{
		this.actionType = actionType;
	}
}

⌨️ 快捷键说明

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