All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twelvemonkeys.util.Visitor Maven / Gradle / Ivy

The newest version!
package com.twelvemonkeys.util;

/**
 * A generic visitor.
 * 
 * @author Harald Kuhr
 * @author last modified by $Author: haku $
 * @version $Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/util/Visitor.java#1 $
 *
 * @see Visitor Patter
 */
public interface Visitor {
    /**
      * Visits an element.
      *
      * @param pElement the element to visit
      */
    void visit(T pElement);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy