(Visitor visitor)
| 201 | } |
| 202 | |
| 203 | public void accept(Visitor visitor) { |
| 204 | if (visitor.visit(this)) { |
| 205 | if (repo != null) { |
| 206 | repo.accept(visitor); |
| 207 | } |
| 208 | if (chan != null) { |
| 209 | chan.accept(visitor); |
| 210 | } |
| 211 | super.visitContainedObjects(visitor); |
| 212 | visitor.endVisit(this); |
| 213 | } |
| 214 | } |
| 215 | } |
nothing calls this directly
no test coverage detected