/* Deduced from the output of javap -c SFped */

import java.util.Date;

public class SFped
{
    static final int year = 97;
    static final int month = 3;
    static final int day = 15;
    public Date ped;

    public SFped()
    {
        ped = new Date(year, month, day);
    }
}
