xsltvisitable.java
来自「java jdk 1.4的源码」· Java 代码 · 共 21 行
JAVA
21 行
package org.apache.xalan.templates;/** * A class that implements this interface will call a XSLTVisitor * for itself and members within it's heararchy. If the XSLTVistor's * method returns false, the sub-member heararchy will not be * traversed. */public interface XSLTVisitable{ /** * This will traverse the heararchy, calling the visitor for * each member. If the called visitor method returns * false, the subtree should not be called. * * @param visitor The visitor whose appropriate method will be called. */ public void callVisitors(XSLTVisitor visitor);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?