| java.lang.Object | |
| ↳ | com.atlassian.bitbucket.project.AbstractVoidProjectVisitor |
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.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Invokes
doVisit(Project) and returns null. | |||||||||||
Invokes
doVisit(PersonalProject) and returns null. | |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Called by
visit(PersonalProject). | |||||||||||
Called by
visit(Project). | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.bitbucket.project.ProjectVisitor
| |||||||||||
Invokes doVisit(PersonalProject) and returns null.
| project | the personal project to visit |
|---|
null
Called by visit(PersonalProject). This base implementation does nothing.
| project | ignored |
|---|
Called by visit(Project). This base implementation does nothing.
| project | ignored |
|---|