/*
* Person.java
*
* Created on 2007年12月18日, 上午11:28
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package adressbook;
import java.io.*;
/**
*
* @author Administrator
*/
class Person implements Serializable{
public String name;
public String zip;
public String address;
public String telephone;
public String cellphone;
public String email;
/** Creates a new instance of Person */
public Person(String n, String z, String a, String t, String c, String e) {
name = n;
zip = z;
address = a;
telephone = t;
cellphone = c;
email = e;
}
public String toString(){
return name;
}
}