src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/Visitor.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    25  * Interface implementing the Visitor pattern programming style.
    25  * Interface implementing the Visitor pattern programming style.
    26  * I.e., a class that implements this interface can handle all types of
    26  * I.e., a class that implements this interface can handle all types of
    27  * instructions with the properly typed methods just by calling the accept()
    27  * instructions with the properly typed methods just by calling the accept()
    28  * method.
    28  * method.
    29  *
    29  *
    30  * @version $Id: Visitor.java 1747278 2016-06-07 17:28:43Z britter $
    30  * @version $Id$
    31  */
    31  */
    32 public interface Visitor {
    32 public interface Visitor {
    33 
    33 
    34     void visitStackInstruction( StackInstruction obj );
    34     void visitStackInstruction( StackInstruction obj );
    35 
    35