adminscreensetform.java
来自「一个jsp写的bbs」· Java 代码 · 共 59 行
JAVA
59 行
package com.laoer.bbscs.web.form;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang.*;
public class AdminScreenSetForm
extends ActionForm {
private String action;
private String bestrowScreen;
private String screenWord;
private int useScreen;
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public void setUseScreen(int useScreen) {
this.useScreen = useScreen;
}
public void setScreenWord(String screenWord) {
this.screenWord = screenWord;
}
public void setBestrowScreen(String bestrowScreen) {
this.bestrowScreen = bestrowScreen;
}
public String getBestrowScreen() {
return bestrowScreen;
}
public String getScreenWord() {
return screenWord;
}
public int getUseScreen() {
return useScreen;
}
public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
if (StringUtils.isBlank(this.action)) {
this.action = "index";
}
return null;
}
public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?