blob: b27902255de692977ede04667abec89b189b663e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import java.io.*;
public class Person
implements Serializable
{
public String name;
public Person mother;
public Person father;
public Person(String name)
{
this.name = name;
}
}
|