visitable.java
来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 21 行
JAVA
21 行
package org.codehaus.xfire.service;/** * Indicates that a class may be visited by a {@link Visitor}. * <p/> * Used to recurse into {@link ServiceInfo}, {@link OperationInfo}, {@link MessageInfo}, etc. * * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a> * @see Visitor */public interface Visitable{ /** * Acceps the given visitor. Subclasses are required to call the <code>begin*</code> method on the given visitor, * iterate over their members, call {@link #accept} for each of them, and call <code>end*</code>. * * @param visitor the visitor. */ void accept(Visitor visitor);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?