preparable.java

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

JAVA
24
字号
/* * Copyright (c) 2002-2006 by OpenSymphony * All rights reserved. */package com.opensymphony.xwork2;/** * Preparable Actions will have their prepare() method called if the PrepareInterceptor is applied to the ActionConfig * * @author Jason Carreira * @see com.opensymphony.xwork2.interceptor.PrepareInterceptor *      Date: Nov 5, 2003 2:28:47 AM */public interface Preparable {    /**     * This method is called to allow the action to prepare itself.     *     * @throws Exception thrown if a system level exception occurs.     */    void prepare() throws Exception;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?