Guest User

Untitled

a guest
Jan 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. String ouder = "Kind";
  2. Iterator<Relatie> it = p.getRelaties();
  3. while (it.hasNext()) {
  4. Relatie r = it.next();
  5. Iterator<Persoon> it2 = r.getKinderen();
  6. while (it2.hasNext()) {
  7. Persoon p2 = it2.next();
  8. ouder = "Ouder";
  9. }
  10. }
Add Comment
Please, Sign In to add comment