?? helloaction.java
字號:
package aa;
import com.opensymphony.xwork2.ActionSupport;
public class HelloAction extends ActionSupport {
public String arg[];
public String str[];
public String execute() throws Exception {
System.out.println("it is excute method");
return SUCCESS;
}
public String getSomeThing (){
System.out.println("it is getSomething method");
System.out.println("str.length===="+str.length);
return SUCCESS;
}
public String getSomeThing2 (){
System.out.println("it is getSomething2 method");
return SUCCESS;
}
public String[] getArg() {
return arg;
}
public void setArg(String[] arg) {
this.arg = arg;
}
public String[] getStr() {
return str;
}
public void setStr(String[] str) {
this.str = str;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -