(Visitor visitor)
| 223 | } |
| 224 | |
| 225 | public void accept(Visitor visitor) { |
| 226 | if (visitor.visit(this)) { |
| 227 | for (Name name : getNames()) { |
| 228 | name.accept(visitor); |
| 229 | } |
| 230 | for (ParentFamilyRef parentFamilyRef : getParentFamilyRefs()) { |
| 231 | parentFamilyRef.accept(visitor); |
| 232 | } |
| 233 | for (SpouseFamilyRef spouseFamilyRef : getSpouseFamilyRefs()) { |
| 234 | spouseFamilyRef.accept(visitor); |
| 235 | } |
| 236 | for (Association association : getAssociations()) { |
| 237 | association.accept(visitor); |
| 238 | } |
| 239 | if (addr != null) { |
| 240 | addr.accept(visitor); |
| 241 | } |
| 242 | super.visitContainedObjects(visitor); |
| 243 | visitor.endVisit(this); |
| 244 | } |
| 245 | } |
| 246 | } |
nothing calls this directly
no test coverage detected