timesheetevent.java.svn-base

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

SVN-BASE
82
字号
package com.nsi.components.timesheet;

import com.nsi.control.event.EventSupport;

/**
 * @author Chris Ye, created on Sep 30, 2008
 *
 * TimeSheetEvent
 */
public class TimeSheetEvent extends EventSupport
{
	private String timesheetid;
	private String resourceid;
	private String startweek;
	private TsInfo info;
	/**
	 * constructor of TimeSheetEvent
	 */
	public TimeSheetEvent()
	{
		super();
	}
	/**
	 * constructor of TimeSheetEvent
	 * @param actionType
	 */
	public TimeSheetEvent(int actionType)
	{
		super(actionType);
	}
	public String getEventName()
	{
		return "com.nsi.components.timesheet.TimeSheetEvent";
	}
	public String getHandleName()
	{
		return "com.nsi.components.timesheet.TsBackHandler";
	}
	public TsInfo getInfo()
	{
		return this.info;
	}
	public String getResourceid()
	{
		return this.resourceid;
	}
	public String getStartweek()
	{
		return this.startweek;
	}
	public String getTimesheetid()
	{
		return this.timesheetid;
	}
	public void setEvent(String timesheetid, TsInfo info)
	{
		this.timesheetid = timesheetid;
		this.info = info;
	}
	public void setEvent(String resourceid, String startweek)
	{
		this.resourceid = resourceid;
		this.startweek = startweek;
	}
	public void setInfo(TsInfo info)
	{
		this.info = info;
	}
	public void setResourceid(String resourceid)
	{
		this.resourceid = resourceid;
	}
	public void setStartweek(String startweek)
	{
		this.startweek = startweek;
	}
	public void setTimesheetid(String timesheetid)
	{
		this.timesheetid = timesheetid;
	}
}

⌨️ 快捷键说明

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