Skip to content

Commit

Permalink
replace accidentally removed methods
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed Mar 3, 2017
1 parent 2ec0db7 commit cb8a15a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,17 @@ public void visit(final Attribute attribute) {
trimmedAttributes.add(attribute);
}

/**
* Visit a Child. The list of children may be used by the calling
* algorithm.
*
* @see GedObjectVisitor#visit(Child)
*/
@Override
public void visit(final Child child) {
children.add(child);
}

/**
* Visit a Family. This is the primary focus of the visitation. From
* here, interesting information is gathered from the attributes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@ public void visit(final Attribute attribute) {
trimmedAttributes.add(attribute);
}

/**
* Visit a Child. The list of children may be used by the calling
* algorithm.
*
* @see GedObjectVisitor#visit(Child)
*/
@Override
public void visit(final Child child) {
children.add(child);
}

/**
* Visit a Person. This is the primary focus of the visitation. From
* here, interesting information is gathered from the attributes.
Expand Down

0 comments on commit cb8a15a

Please sign in to comment.