/**
* Write a description of class Person here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Person
{
// instance variables - replace the example below with your own
private int x;
/**
* Constructor for objects of class Person
*/
public Person()
{
}
String getName() { return ""; }
}