📄 jobdetailconfig.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.Properties;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class JobDetailConfig {
protected String jobName;
protected String groupName;
protected String targetClass;
protected Properties targetProps;
/**
* @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 jobName.
*/
public String getJobName() {
return jobName;
}
/**
* @param jobName
* The jobName to set.
*/
public void setJobName(String jobName) {
this.jobName = jobName;
}
/**
* @return Returns the targetClass.
*/
public String getTargetClass() {
return targetClass;
}
/**
* @param targetClass
* The targetClass to set.
*/
public void setTargetClass(String targetClass) {
this.targetClass = targetClass;
}
/**
* @return Returns the targetProps.
*/
public Properties getTargetProps() {
return targetProps;
}
/**
* @param targetProps
* The targetProps to set.
*/
public void setTargetProps(Properties targetProps) {
this.targetProps = targetProps;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -