📄 triggerconfig.java
字号:
/*
* Created on 2005-8-17
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.exp.fcl.scheduler.config;
import java.util.Date;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class TriggerConfig {
/**
* @return Returns the endTime.
*/
public Date getEndTime() {
return endTime;
}
/**
* @param endTime
* The endTime to set.
*/
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
/**
* @return Returns the groupName.
*/
public String getGroupName() {
return groupName;
}
/**
* @param groupName
* The groupName to set.
*/
public void setGroupName(String groupName) {
this.groupName = groupName;
}
/**
* @return Returns the name.
*/
public String getName() {
return name;
}
/**
* @param name
* The name to set.
*/
public void setName(String name) {
this.name = name;
}
/**
* @return Returns the startTime.
*/
public Date getStartTime() {
return startTime;
}
/**
* @param startTime
* The startTime to set.
*/
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
protected String name;
protected String groupName;
protected Date startTime;
protected Date endTime;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -