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