Class AbstractVoidProjectVisitor

java.lang.Object
com.atlassian.bitbucket.project.AbstractVoidProjectVisitor
All Implemented Interfaces:
ProjectVisitor<Void>

public abstract class AbstractVoidProjectVisitor extends Object implements ProjectVisitor<Void>
A base implementation of ProjectVisitor intended for use in building visitors which do not need to return any values. Each visit method delegates to a doVisit method. While this class is abstract, visit methods for all types are implemented to delegate to a doVisit method and return null, and all doVisit methods are implemented as no-ops.