mockactionproxy.java

来自「在Struts2中的jar包xwork的源代码.版本为2.0.7」· Java 代码 · 共 104 行

JAVA
104
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?