// Copyright 1997 Object UK Ltd.
// Author Andrew Carmichael
// Updated Tim Shelley
//
// Date
// Version 0.2
// Email: objectuk@objectuk.co.uk
// Web: http://www.objectuk.co.uk
package ProblemDomain;
// Generated by Together/J
//import java.util.*;
public class Birth extends ProblemDomain.LifeEvent {
public Birth() {}
/** Note: this constructor uses Date not Calendar */
public Birth(String date, String place, String comments) {
super(date, place, comments);}
public String getTextRecordIdentifier() {
return "BIRT";}
// TEST OBJECT
public static Birth testObject(){
return new Birth ("3/8/1968", "Glasgow", " ");
}
}
|