77 lines
1.5 KiB
Java
77 lines
1.5 KiB
Java
package wenrgise.hrms.webtier.form;
|
|
|
|
import wenrgise.common.webtier.form.BaseForm;
|
|
|
|
public class HrmBaseForm extends BaseForm {
|
|
private String txtDisplayFields;
|
|
|
|
private String txtSearchFields;
|
|
|
|
private String listRowClass;
|
|
|
|
private String actionName;
|
|
|
|
String addIncrValue;
|
|
|
|
private String siteId;
|
|
|
|
private String empId = "";
|
|
|
|
public String getTxtDisplayFields() {
|
|
return this.txtDisplayFields;
|
|
}
|
|
|
|
public void setTxtDisplayFields(String newTxtDisplayFields) {
|
|
this.txtDisplayFields = newTxtDisplayFields;
|
|
}
|
|
|
|
public String getTxtSearchFields() {
|
|
return this.txtSearchFields;
|
|
}
|
|
|
|
public void setTxtSearchFields(String newTxtSearchFields) {
|
|
this.txtSearchFields = newTxtSearchFields;
|
|
}
|
|
|
|
public String getListRowClass() {
|
|
if ("oddRow".equals(this.listRowClass)) {
|
|
this.listRowClass = "evenRow";
|
|
} else {
|
|
this.listRowClass = "oddRow";
|
|
}
|
|
return this.listRowClass;
|
|
}
|
|
|
|
public String getActionName() {
|
|
return this.actionName;
|
|
}
|
|
|
|
public void setActionName(String newActionName) {
|
|
this.actionName = newActionName;
|
|
}
|
|
|
|
public String getAddIncrValue() {
|
|
return this.addIncrValue;
|
|
}
|
|
|
|
public void setAddIncrValue(String newAddIncrValue) {
|
|
this.addIncrValue = newAddIncrValue;
|
|
}
|
|
|
|
public String getSiteId() {
|
|
return this.siteId;
|
|
}
|
|
|
|
public void setSiteId(String newSiteId) {
|
|
this.siteId = newSiteId;
|
|
}
|
|
|
|
public String getEmpId() {
|
|
return this.empId;
|
|
}
|
|
|
|
public void setEmpId(String newEmpId) {
|
|
this.empId = newEmpId;
|
|
}
|
|
}
|