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

org.srplib.reflection.objectgraph.Element Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package org.srplib.reflection.objectgraph;

/**
 * An interface of visitable structure in Visitor pattern.
 *
 * @author Anton Pechinsky
 * @deprecated use org.srplib.visitor package
 */
@Deprecated
public interface Element {

    /**
     * Implementing classes should call this method on each node of encapsulated structure.
     *
     * @param visitor Visitor visitor
     */
    void accept(Visitor visitor);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy