📄 mockactionproxy.java
字号:
/* * Copyright (c) 2002-2006 by OpenSymphony * All rights reserved. */package com.opensymphony.xwork2.mock;import com.opensymphony.xwork2.config.Configuration;import com.opensymphony.xwork2.config.entities.ActionConfig;import com.opensymphony.xwork2.ActionProxy;import com.opensymphony.xwork2.ActionInvocation;/** * Mock for an {@link ActionProxy}. * * @author Patrick Lightbody (plightbo at gmail dot com) */public class MockActionProxy implements ActionProxy { Object action; String actionName; ActionConfig config; boolean executeResult; ActionInvocation invocation; String namespace; String method; boolean executedCalled; String returnedResult; Configuration configuration; public void prepare() throws Exception {} public String execute() throws Exception { executedCalled = true; return returnedResult; } public void setReturnedResult(String returnedResult) { this.returnedResult = returnedResult; } public boolean isExecutedCalled() { return executedCalled; } public Object getAction() { return action; } public void setAction(Object action) { this.action = action; } public String getActionName() { return actionName; } public void setActionName(String actionName) { this.actionName = actionName; } public ActionConfig getConfig() { return config; } public void setConfig(ActionConfig config) { this.config = config; } public boolean getExecuteResult() { return executeResult; } public void setExecuteResult(boolean executeResult) { this.executeResult = executeResult; } public ActionInvocation getInvocation() { return invocation; } public void setInvocation(ActionInvocation invocation) { this.invocation = invocation; } public String getNamespace() { return namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getMethod() { return method; } public void setMethod(String method) { this.method = method; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -