📄 testform.java
字号:
package struts.sample.cap1.sample3.form;
import org.apache.struts.action.ActionForm;
public class TestForm extends ActionForm
{
private String description;
private String hasNext ;
private String hasPrevious ;
public String getHasNext() {
return hasNext;
}
public void setHasNext(String hasNext) {
this.hasNext = hasNext;
}
public String getHasPrevious() {
return hasPrevious;
}
public void setHasPrevious(String hasPrevious) {
this.hasPrevious = hasPrevious;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -