< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/Visitor.java

Print this page

        

@@ -25,11 +25,10 @@
  * Interface implementing the Visitor pattern programming style.
  * I.e., a class that implements this interface can handle all types of
  * instructions with the properly typed methods just by calling the accept()
  * method.
  *
- * @version $Id$
  */
 public interface Visitor {
 
     void visitStackInstruction( StackInstruction obj );
 
< prev index next >