org.srplib.reflection.objectgraph.Visitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of srp-reflection-support Show documentation
Show all versions of srp-reflection-support Show documentation
Single Responsibility Principle (SRP) libraries collection
package org.srplib.reflection.objectgraph;
/**
* Generic visitor interface.
*
* @author Anton Pechinsky
* @deprecated use org.srplib.visitor package
*/
@Deprecated
public interface Visitor {
/**
* Method is called for each object of visited structure.
*
* @param object Object structure node.
*/
void visit(Object object);
}