📄 actionresult.java
字号:
/* * WebWork, Web Application Framework * * Distributable under Apache license. * See terms of license at opensource.org */package webwork.action.client;import webwork.action.Action;import java.io.Serializable;/** * Carries the action execution result from the server to the client. * * @author Rickard 謆erg (rickard@dreambean.com) */public class ActionResult implements Serializable{ // Attributes ---------------------------------------------------- Action action; String result; Exception exception; // Static -------------------------------------------------------- public static long serialVersionUID = 0; // Constructors -------------------------------------------------- public ActionResult(Action aAction, String aResult) { action = aAction; result = aResult; } // Public -------------------------------------------------------- public Action getAction() { return action; } public void setAction(Action aAction) { action = aAction; } public Exception getException() { return exception; } public void setException(Exception aException) { exception = aException; } public String getResult() { return result; } public void setResult(String aResult) { result = aResult; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -