📄 preparable.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -